Tagged Questions
10
votes
2answers
25k views
About Expandable List In Android
How to add image in expandable List in parent in android ?
If possible how to customize the child in expandable list?
8
votes
3answers
267 views
Multi-layered ExpandableListView
I'm currently working on a project in which I need something like the following:
- MainGroup 1 (Expandable)
- SubGroup 1 (Expandable)
- SubSubGroup 1 (Expandable)
- Child View
- ...
7
votes
2answers
5k views
Android: long click on the child views of a ExpandableListView?
ExpandableListView has a setOnChildClickListener method, but lacks of setOnChild*Long*ClickListener method.
When I added setOnLongClickListener() on child view in getChildView(), whole sublist became ...
3
votes
2answers
208 views
ExpandableListView inside ExpandableListView
I would like to know if it is possible to put an ExpandableListView as one child of one element of another ExpandableListView. Thanks
3
votes
1answer
510 views
How to get Pinned Headers in an ExpandableListView?
Has anyone had any luck adapting PinnedHeaderListView so that it can be used with an ExpandableListView instead of just a simple ListView with indexed sections? I basically want an ExpandableListView ...
2
votes
2answers
88 views
Get expanded group view of an ExpandableListView using onGroupExpand
I'm using an ExpandableListView and I'm unsuccessfully trying to move an image when expanding a group (the image being part of the group view).
Here is my code :
...
2
votes
0answers
78 views
Best practice for an ExpanableListView and its Adapter
I have a best practice question to make sure I'm doing this in the most efficient way. I have an application that contains an expandable list view. This view has three subsections to it, for the ...
2
votes
2answers
526 views
ExpandableList View don't expand
I'm trying to personalize an ExpandableLisTview
I create
Iterator.Xml: with The ExpandableList View
group.xml:A relative Layout with a simple TextView and a Button
Child.xml:A relative layout with ...
1
vote
1answer
121 views
Show only one child of expandable list at a time
Is it possible to only expand one child of an expandablelist at a time, and opening a second child would close the opened child?
Thanks!
1
vote
2answers
166 views
ExpandableListView does not append the childs
I have an ExpandableListView containing movie information. The groups are the movie titles, the childs are the media related to this movie (all included in the Movie object).
The ExpandableListView is ...
1
vote
1answer
598 views
Force ExpandableListView to update data when notifyDataSetChanged is called
I have an ExpandableListView and an ExpandableListAdapter. When I call notifyDataSetChanged() in my adapter, the data is not refreshed until I collapse and then expand the group. Here's the code in ...
1
vote
1answer
618 views
Android: How to correctly use NotifyDataSetChanged with SimpleExpandableListAdapter?
I am struggeling updating my ExpandableListView via NotfiyDataSetChanged.
I am downloading some data from a webserver, which is displayed correctly in my ExpandableListView.
By clicking on a child ...
1
vote
1answer
941 views
Adding dynamic ExpandableListView inside main.xml
Is there a site where I can find the inner workings of the BaseExpandableListAdapter? I read the API and I still don't understand how it loops through the whole array that is supplied to provide the ...
1
vote
2answers
514 views
Can an ExpandableListView be embedded in another layout?
I would like to have an expandable/collapsible listview in my app, similar to how the comments are displayed for each app in the Market (in fact, each item in the list is a comment on the same format ...
1
vote
2answers
891 views
Strange behaviour in Expandablelistview - Android
Im trying to implement an activity that uses ExpandableListView and I have gotten so far but now I have found some strange behavior.
My activity is meant to record food intake as specified by the ...
1
vote
1answer
2k views
In an ExpandableListView, how can I show one additional line at the end of the child results?
I have created a custom ExpandableListAdapter and everything works properly. What I'd like to be able to do is in each of the groups add a different type of child to the end. I have tried adding 1 to ...
0
votes
1answer
46 views
how to call notifyDataSetChanged for custom ExpandableListView?
i'm trying to call notifyDataSetChanged for my custom ExpandableListView. what happens is for my child list, it shows the files in the selected folder (group list). when the child is clicked, it will ...
0
votes
1answer
55 views
ExpandableList example
I need to use ExpandableList in my app. I found this example:
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/ExpandableList1.html which I could compile ...
0
votes
1answer
29 views
BaseExpandablelist different groups with different backgrounds
I am making a listview with sections, using BaseExpandableListAdapter and making the group not to collapse. Now i want different groups (including header and rows) to have different background, Is it ...
0
votes
2answers
86 views
How can I make a ExpandableListView on Mono for Android
I'm trying to make an Expandable ListView, but I don't know how to retrieve the info of some methods from the ExpandableListAdapter, so here is my code:
This the Main Activity:
[Activity (Label = "AR ...
0
votes
2answers
71 views
how to customize views of ExpandableList
I need an ExpandableList in my Android app. By extending ExpandableListActivity whose content view is as the following:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
0
votes
1answer
213 views
BaseExpandableListAdapter and GetChildView - custom dialog limitations?
first question and a newbie to android - hopefully that means there is a simple solution that i've just outright missed - here's to hoping ... here goes.
I'm using a custom BaseExpandableListAdapter ...
0
votes
1answer
165 views
Issue with editing edittext in ExpandableListView
I have 3 group containing 3 child which has EditText , when I click on EditText the software keyboard pop's out, at that time the expandable list is redrawn
When the I am done with text editing , ...
0
votes
0answers
280 views
working with ExpandableListView with XML and code
I was just trying to create few groups and its corresponding children in an activity. No success so far. Tried various suggestions given by people in different questions but they have failed to get my ...
0
votes
2answers
149 views
How to keep the ExpandableListView Opened?
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 to ...
0
votes
0answers
80 views
ExpandableList with Footer, DPAD clicks are ignored, touchclicks work?
I am wondering about the following scenario.
I've got an Activity (extends ExpandableListActivity) with an Adapter (extends BaseExpandableListAdapter).
Inside the Activity I inflate a footer ...
0
votes
0answers
63 views
tabview under listview
I am trying to implement a tabview within a child of an expandablelistview. It would be great if the child could fire up the activity responsible for generating the tabview, but I don't know if it's ...
0
votes
2answers
564 views
android delete item from list
public class DeleteActivity extends ExpandableListActivity {
private RingtoneAdapter expListAdapter;
int myProgress = 0;
List<String> items = new ArrayList<String>();
final Context myApp = ...
0
votes
1answer
423 views
Android: not able to trace down a ClassCastException with SimpleExpandableListAdapter
I get the following exception running my program:
05-12 08:29:06.907: ERROR/AndroidRuntime(460): FATAL EXCEPTION: main
05-12 08:29:06.907: ERROR/AndroidRuntime(460): java.lang.ClassCastException: ...
0
votes
1answer
785 views
ExpandableList View not using ExpandableListActivity
Because I don't have enough reputation points to comment on previous questions yet, I had to create a new one. I needed an expandable list view that didn't take up the entire activity so I used this ...
0
votes
1answer
476 views
Not able to get fast scrolling working on ExpandableListView
I can't seem to get fast scrolling working with my ExpandableListView. What's more is that the SectionIndexer methods I have implemented in my adapter are never actually called and I have verified ...
0
votes
3answers
1k views
Can't seem to figure out ExpandableListAdapter
I'm trying to write a simple example which pulls external data over the network and populates an ExpandableListView via a ExpandableListAdapter. I've tried a couple examples and am pretty much lost. ...
0
votes
1answer
1k views
Get a string-array into a string
I have a set of strings I originally was using with an ArrayAdapter to populate a Spinner. Instead of a Spinner, I want to use a BaseExpandableListAdapter. Is there a way I can get a set of ...
0
votes
1answer
661 views
Add ExpandableListView to a tab with other elements
I am developing an app with tabs. On one of the tabs,
I have two EditText fields and a couple of buttons. I want to add an ExpandableListView
to the tab, below the rest of the elements.
My problem ...