Tagged Questions

14
votes
5answers
1k views

Animation for expandableListView

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

Programmatically collapse a group in ExpandableListView

When I expand a new group, can I collapse the last one expanded?
7
votes
2answers
22k 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
2answers
77 views

Checkbox in ExpandableListView

I am using an ExpandableListView in which each group is a TextView and each child is a CheckBox. I was trying to implement something similar to this link : ...
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
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 ...
5
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 ...
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
1answer
43 views

Add an onClickListener on Default GroupIndicator in ExpandableListView

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) when ...
4
votes
2answers
559 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
900 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
49 views

Updating ExpandableListView with notifyDataSetChanged()

First a short overview of my code, i hope its understandable: I have a class called ToDoElement with a few variables. I have another class called ToDoListe which manages the ToDoElements in an ...
3
votes
0answers
181 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. ...
3
votes
1answer
101 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 ...
3
votes
2answers
256 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
581 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
780 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
438 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
2k 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
496 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
1k 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
72 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
96 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
151 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
102 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
1answer
270 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
1answer
98 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
101 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
1answer
157 views

Show only one child of expandable list at a time

Is it possible to only expand one child of an ExpandableListView at a time, thus opening a second child would close the previously opened child?
2
votes
3answers
215 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
180 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
144 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
445 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
147 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
360 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
390 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
199 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
3answers
3k 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
560 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
2answers
1k views

How to implement different click events for child of expandable list?

In my expandable list view I have a textView and an imagebutton. When I click on the textView or child view of expandable list, it should show an alertbox. I can achieve this by using onChildClick but ...
2
votes
1answer
610 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
319 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 ...

1 2 3 4 5 8