Tagged Questions

The ExpandableListView is a standard Android widget that shows items in a vertically scrolling two-level list. Groups can be expanded or collapsed to show/hide their child items.

learn more… | top users | synonyms

10
votes
1answer
3k views

Android: ClassCastException when adding a header view to ExpandableListView

I'm trying to add a header to an ExpandableListView like so: headerView = View.inflate(this, R.layout.header, null); expandableListView.addHeaderView(headerView); expandableListView.setAdapter(new ...
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?
9
votes
2answers
980 views

Animation for expandableListView

Is it possible to apply an expand or collapse animation for expandableListView?
8
votes
3answers
260 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 - ...
8
votes
1answer
1k views

GridView inside Expandable list in android

I want to put an gridview with images inside an expandable list...I've already make that, but the gridview don't show all item... IMAGE OF ACTUAL LAYOUT How can i make my expandable list child adapt ...
7
votes
1answer
1k views

Programmatically collapse a group in ExpandableListView

When I expand a new group, can I collapse the last one expanded?
7
votes
2answers
20k views

Expandable ListView Sample from Google

I just tried the current Google sample for ExpandableListiew: http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/ExpandableList1.html This sample seem very ...
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 ...
5
votes
3answers
2k views

Android Expandable list

I want trying to use a custom expandable list with parent and child layout to be my parent. XML and child. XML. Also, My data would be a server response. So, I preferably like to have data to be in ...
5
votes
2answers
1k views

Save and restore expanded/collapsed state of an ExpandableListActivity

I have an ExpandableListActivity (using a SimpleCursorTreeAdapter) which starts another activity when the user clicks on a child-element. When pressing the back-button in the new activity all the ...
5
votes
2answers
1k views

How can I create a list with only certain items expandable?

I am trying to compose a list with some items expandable and some single items. I wish to have it so that when either a single item or expandable list child is clicked, I can call an intent based on ...
4
votes
2answers
443 views

Expandable ListView

I am using expandableListView for UI design, so I am wondering for Android expandable listview, is there a way to allow only one list item expanded, i.e. when you click and expand an item, all other ...
4
votes
2answers
2k views

ExpandableListFragment with LoaderManager for Compatibility Package

I want to make my ExpandableListActivity compatible with Honeycomb. I am wondering why there is no ExpandableListFragment for the Compatibility Package. Is there a way to make ExpandableListView work ...
4
votes
2answers
2k views

ANDROID - ExpandableListView

Im trying to figure out how to build a view that contains (many of): PARENT1 (checkable, expandable) CHILD1 (RADIO BUTTON) CHILD2 (RADIO BUTTON) ... PARENT2 (checkable, expandable) CHILD1 ...
4
votes
2answers
869 views

Android: ExpandableListViews and Checkboxes

I have being playing around with expandable list views recently. I am trying to get a list view that has a checkbox as one of the elements of the child view. I found this tutorial, ...
3
votes
2answers
200 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
508 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 ...
3
votes
1answer
738 views

Android ExpandableListView indicator/icon always stretched

I use my own icon image as indicator for ExpandableListView, but the icon seems to be stretched, I tried to put the image file in /drawable and /drawable-hdpi with no luck. If I do not use my own ...
3
votes
2answers
424 views

How can ExpandableListView's default list item press behavior be preserved when supplying a group view that contains more than just a TextView?

Is it possible to preserve ExpandableListView's default list item press behavior when supplying a group view that contains more than just a TextView. The behavior I'm referring to is where the item ...
3
votes
2answers
1k views

SQLite query run on UI thread with ExpandableListView/SimpleCursorTreeAdapter

I'm in the progress of developing an Android app for displaying a number of RSS feeds (yes, I know there are many apps like this already). The data to be displayed is backed by a content provider, and ...
3
votes
0answers
481 views

android fastScroll only covers part of the list

I have a class which implements expandable list activity. In the XML code (or I can do it in java), I set fastScrollEnabled to true. This does in deed enable fast scroll. BUT fast scroll only works in ...
3
votes
3answers
962 views

Disable collapsing of ExpandableListView

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 ...
2
votes
1answer
32 views

How to add a table layout to ExpandableListView as a child item.

I want to add a table layout to ExpandableListView as a child item. so that when we click on group data its adaptor shows a table layout. Thanks
2
votes
1answer
55 views

How to save state of checkboxes in expandable listview - Android

I'm displaying entries from SQLite database in Expandable ListView and everything is working correctly but, I wanted to add in a checkbox right next to all children. Every time I check a checkbox and ...
2
votes
2answers
82 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
76 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
0answers
105 views

Group click listener in android expandable list view

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. ...
2
votes
1answer
152 views

Android ExpandableListView CheckBox Select Only Clicked Checkbox

I have a quick question on ExpandableListViews and using CheckBoxes. I will show the current code below. I currently have a ExpandableListView with a checkbox in each child row. These checkboxes ...
2
votes
0answers
75 views

ExpandableListView - group indication is stretch to fit the text size

I have group indication with small icon, and i use groupIndicator to call the selector to draw it but I see android by default stretch that icon to fits the text size how can i prevent that ...
2
votes
1answer
81 views

ExpandableListView set max size of childView

I have a ExpandableListView and I want to put max size for childView and if I have more content in childView that to be available with a scroll. The question is if I have in childView 5 items how I ...
2
votes
0answers
80 views

new expandable listview highly customizable

I need to realize something like that in the picture: "TITLE" rectangle makes a list of object and when I click on one of these objects is opened a "sub menu" (where there are ELEMENT #1, 2 etc.). ...
2
votes
3answers
165 views

Using a ScrollView on RelativeLayout that contains an ExpandableListView

I've got this RelativeLayout I am using: <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
2
votes
1answer
158 views

Android - extending setOnGroupExpandListener method

I am using an ExpandableListView. It works fine, but I want to add an OnGroupExpandListener; The problem is if I override it, the 'basic' default behaviour for that is overridden as well. I basically ...
2
votes
0answers
127 views

Android - Thumb of fastscroll in expandablelistview doesnt scroll list correctly

i am using an expandablelistview to show a list of groups containing different counts of children. sometimes the list is very long, so i wanted to enable fastscroll. i did this and everything is ...
2
votes
5answers
369 views

Expandable List Android Black background while scrolling

I'm struggling with the ExpandableList View in Android. I'm using the code provided in the apis demo but I don't know how to solve my problem. I got a white background on my view but when I'm ...
2
votes
1answer
136 views

What is the proper way to handle child selection when an ExpandableListView gets focus?

I have an ExpandableListView and then some other control that can have focus to the right of it. Something like this. Note: Child2 is selected. Group1 Child1 +-----------------------+ ...
2
votes
2answers
1k views

Expandable list-view android, set custom drawables

ok, i just have a simple question here. how can i change the group arrow on expandable listview with another drawables? y know, i'm gonna use + and - for my expandable group list... Thanks
2
votes
2answers
313 views

LayoutInflater and ExpandableListView

I am still fairly new to android, but I am getting there! I have created an ExpandableListView almost identical to the api sample code on the android developers website. The ExpandableList works ...
2
votes
1answer
358 views

android - what button is clicked on expandableListView's child

Hello everibody and thanks to read me. I hope I will express correctly myself because i'm french... Please tell me if you don't understand something. I have an expandableListActivity, and, with an ...
2
votes
1answer
187 views

ExpandableListView Not Updated After AsyncTask finishes executing

I have an ExpandableListView that is created as part of an activity: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
2
votes
2answers
2k views

Expandable list view move group icon indicator to right

As regards to expandable list view, the group icon indicator is positioned to the left side, can I move the indicator and positioned it to the right? Thanks. EDITED: Since I don't want to extend the ...
2
votes
2answers
522 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 ...
2
votes
1answer
2k views

Android ExpandableListView with Checkbox, Controlling checked state

Friends, I am trying to write a application which use checkbox in ExpandableListView, I got a problem here which is maintaining checkbox state of the application, I got the example from here , my ...
2
votes
1answer
587 views

How can I get the width of ExpandableListView's group indicator drawable on Android?

If I use the default group indicator (not setting a new one), how can I know the padding width for the layout of groupview? So can let my layout won't overlap with the group indicator. Is that ...
2
votes
1answer
308 views

How to use a ListView inside a ExpandableList?

I've been working with a custom ExpandableList (see example picture below) where each item always has one child. This child consists of three parts. Each part has a header (red bars) and below that an ...
2
votes
1answer
567 views

animating the childs of an expandablelistview when collapsing/expanding

I'm trying to animate my child views in an expandablelistview. I would like the child view to slide down from top to bottom when expanding a group and sliding from bottom to top when collapsing a ...
2
votes
0answers
1k views

Android: ExpandableListView drawable group indicator being big when i using my own icon

I am using this codes to set my own group indicator icon and set it to right side of the list ExpandableListView list = (ExpandableListView) findViewById(R.id.SCHEDULE); Drawable icon = ...
2
votes
2answers
745 views

Anrdoid ExpandableListView

But have a quick question- I have a ragged hierarchy of parents and children. In that there are some parents that have 5 children...and some parents have 0 children. The expandableListView displays ...
2
votes
0answers
200 views

How do I navigate from child View to it's group View in ExpandableListView on Android?

Each child in my ExpandableListView builds a context menu. In my OnCreateContextMenuListener() I need to access some of the TextViews that are displaying data associated with the child's group. ...
2
votes
0answers
504 views

Android : Is there a way to animate both group and listview of an ExpandableListView?

I'm new to StackOverflow and I hope to find some help about ExpandableListView. I'm using an ExpandableListView having several groups but only one child in each group. The child is a custom view ...

1 2 3 4 5 8