expandablelistview Questions
2
Solved
I have an ExpandableListView bound to a SQLite database. To simplify things, lets assume the database contains two columns: title and body. In the ExpandableListView, there is a group for each titl...
Oscillator asked 12/8, 2010 at 3:42
4
I have an ExpandableListView and I want to log the groupposition when clicking on a group. Unfortunately the code below returns always 0, as if I were clicking on the 0th group.
exList.setOnGroup...
Triclinium asked 9/4, 2012 at 6:47
0
I want to create swipe menu for expandable listview. Something like this. I'm using Android studio and not sure about how to add this as dependencies in Gradle.
Or should I go with the other libra...
Achromatize asked 31/3, 2016 at 10:0
4
Solved
I need to create a navigation drawer like flipkart or Astro file manager app.
How can I replace a listView with an expandable listView?
I need an navigation Drawer like this:
This is my xml:
&...
Unhopedfor asked 6/11, 2015 at 9:12
1
Solved
I'm trying to make a ListView with clickable rows. When you click on a row it sets a child stacklayout to visibility true. This works fine in android, but not in ios. Maybe I'm doing it the wrong w...
Sherborn asked 1/3, 2016 at 8:53
4
Solved
The default behavior of ExpandableListView is to collapse a group when its header is clicked. Is it possible to prevent this from happening?
I've tried:
Setting OnTouchListener on the list. This...
Retreat asked 11/8, 2010 at 19:53
4
Solved
I'm using Expandable List view. In my app both the group and child have content. So I need to start activity on groupClicked as well as on Child clicked. As the default action (given in android) wh...
Inconveniency asked 15/2, 2012 at 12:53
2
Solved
java.lang.UnsupportedOperationException: addView(View, LayoutParams) is not supported in AdapterView
I am using Expandable ListView example found on net
Activity:
public class ExpandableListViewActivity extends ExpandableListActivity {
/**
* strings for group elements
*/
static final String ...
Ameline asked 22/6, 2012 at 10:22
2
Solved
i have a ExpandableListActivity with an custom Adapter.
if the custom row of the adapter contains a imageViewall is done, but if i change this view from imageView to imageButton, the expandable li...
Demitria asked 26/3, 2012 at 22:41
3
Solved
I want to completely hide the groupIndicator in a custom ExpandableListView.
The example provided here did not seem to work.
It suggests making a selector and using expList.setGroupIndicator(sele...
Breve asked 2/5, 2011 at 3:48
2
Solved
I am trying to set a background color for item when the user click on a child item in my expandableListView.
Here is the code :
expListView.setOnChildClickListener(new OnChildClickListener() {
@...
Mom asked 6/2, 2015 at 14:2
1
Solved
I want to know checkbox state in expandable listview in my application data come from server.
My ProductsCategory.java:-
public class ProductsCategory extends AppCompatActivity {
private ListV...
Stern asked 23/10, 2015 at 11:55
3
Solved
I am working on the ExpandableListView I have completed the work, now only one thing that I want to do is I don't want the ListView to be DropDown on click of the Expandable List View rather I want...
Rubicon asked 8/8, 2011 at 6:23
1
I worked a lot to create **N-level expandableListView. I am able to make it to any level but my requirement is to maintain the state of opened groups even after scroll. I tried with multiple ways b...
Mutule asked 22/9, 2015 at 9:56
1
Solved
How to change the color of the drop-down arrow of an expandable ListView?
It would be better to just change color with, so animation isn't lost.
Gilberte asked 27/8, 2015 at 16:13
1
Solved
In my project I am trying to access the adapter(BaseExpandableListAdapter) set to a ExpandableListView by calling getAdapter() method. But getAdapter() returns android.widget.ExpandableListConnecto...
Neglectful asked 17/8, 2015 at 12:27
2
Solved
I am trying to implement an Expandable listView in a fragment. There are no errors coming and when I try to log the output from both the List<String> and HashMap<String, List<String>...
Agribusiness asked 6/6, 2014 at 14:11
3
I have implemented expandablelistview in android app and also implemented divider in it.
I have one problem in not getting the divider between the last item of the child and next group header.
Fo...
Citronellal asked 30/12, 2013 at 10:23
2
Solved
I have an expandable listview. I have put some dummy data and evrything seems ok but when I run the application all groups are in collapse mode and they don't take effect when I click on each of th...
Baughman asked 5/8, 2012 at 16:53
2
Solved
I have an expandable list view where the first group is empty i.e. it has no children while all others have children. Now I have to implement onChildClick for all the groups except the first one.
...
Scorpion asked 30/12, 2011 at 7:34
5
Solved
I have a custom adapter that uses an onclickListener to change the parent text, I can't figure out how to get the notifyDataSetChanged method to work within the adapter.
what should happen is I ha...
Columnar asked 3/7, 2015 at 18:23
1
I have a expandableListView and tried to change its childs like that:
((SubItem) adapter.getChild(i+1, 5)).setCount(unreadBox);
adapter.notifyDataSetChanged();
Here is my adapter class:
public...
Cedell asked 31/5, 2015 at 10:16
2
Solved
In my app I need to show images inside a expandableListView and it has to be a gridview of images, and these images can be selectable so I have an expandableListAdapter and inside of it I'm impleme...
Ilmenite asked 2/5, 2015 at 19:19
3
i have my problem with my Expandable ListView on my Android Application
this my code
package proyek.akhir;
import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle...
Aaronson asked 17/7, 2012 at 19:27
2
Solved
I have an array that is filled with API data, and I have an expandablelistview to show the items of that array, now what I'm trying to do is when the user clicks on an item it saves th ID of that i...
Wort asked 14/5, 2015 at 14:27
© 2022 - 2024 — McMap. All rights reserved.