Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
259 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
1answer
80 views

ExpandableListView onChildClickListener

I am a new bee to android. I am working with ExpandableListViewAdapter and facing a problem. The onChildClickListener is not working when I click on the edit text box. My question is will it work ...
3
votes
2answers
199 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
507 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
80 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
2answers
521 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
526 views

Android. ExpandableListAdapter and Sqlite

are there any good examples out there of using an expandablelistadapter with the results of an sql query? The docs give 3 examples of using expandablelistadapter, but none of them deal with sqlite ...
1
vote
1answer
113 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
588 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
613 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
929 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
0answers
130 views

Convert ListView to ExpandableListView

I've got an Activity with a ListView, filled with the help of an Adapter, that extends a parameterized ArrayAdapter<A>. Class A, that parameterizes this Adapter encapsulates a List of objects of ...
1
vote
1answer
379 views

NullPointerException getting StringArray to String[]

Ok so i have 5 arrays all with 5 elements in them in my strings.xml file like so: <string-array name="monday"> <item>monday</item> <item>tuesday</item> ...
1
vote
1answer
363 views

BaseExpandableListAdapter - disable onclick for groupitems with no childrens

I'm working on implementing an ExpandableListAdapter. Use case: I have group items I want to add to the Expandable list with no children. Problem is that every group item can be clicked on, even if ...
1
vote
2answers
511 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
2k views

How to write custom ExpandableListAdapter

I'm looking to write my own ExpandableListAdapter which operates similarly to ArrayAdapter. My data model is this: public class Group { private String name; private List<Child> ...
1
vote
2answers
446 views

Android GradientDrawable - Corner Radii issue

I am trying to debug a problem I am having with ExpandableListAdapter.getChildView. I have defined a Drawable with a shape containing a gradient and a corner with a radius of 1 for the background ...
1
vote
1answer
1k views

Android: Bind data to a ListView without preparing ArrayLists for the ListAdapter?

Right now, I get my Models in a nice object-oriented form. In order to bind them to my List, I have to use the listAdapter. Can I only fill this listAdapter with stupid ArrayLists? Because that means, ...
1
vote
2answers
888 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
43 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
52 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
22 views

ExpandableList array resource implementation questions

I am not exactly clear on how to implement ExpandableList as array resource instead of hard-coded array (by replacing an existing hard-coded array with XML layout). Here is my strings.xml <?xml ...
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
80 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
67 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
204 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
2answers
113 views

android: How to ExpandableListAdapter using the same class for group and child?

I'm trying to use android ExpandableListView widget. I have a class Item, it has many attributes about an item. I want my list to be look like, the elements of the group list only shows the name of ...
0
votes
1answer
104 views

ExpandableListAdapter add/delete group

I need to be able to create and delete groups in my expandableListAdapter dynamically. I have looked through all that I can find and am stuck. I do not need specific code, but just to be pointed in ...
0
votes
1answer
163 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
0answers
36 views

triggering an activity for a specific image inside the expandable list

I have an expandable list inside a table layout which gives me a submenu, whenever I click anywhere inside the table layout. I have a few ImageViews inside the table layout and I want to have seperate ...
0
votes
2answers
145 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
145 views

error dynamically populate the Expandable list in Android

I am trying to populate an expandable list with my items and on the subitem(children) i have errors. I get a NullPointerException at ...
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
62 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
558 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
422 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
771 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
275 views

Pattern for querying the database asynchronously in getChildrenCursor() method of CursorTreeAdapter class

I've implemented a custom Adapter for a ExpandableListView which I extended from the CursorTreeAdapter class. Everything is working as expected. But I'm wondering if there's pattern or some kind of ...
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
269 views

How to disable background child highlight in expandable list

I have a pretty long expandable list with lots of children under each group. When a group is expanded and I perform scroll action, I see background behind children becomes dark untill scroll stopps. ...
0
votes
1answer
458 views

Expandable list child selection problem in Android

I have an expandable list with groups and childrens. Each child is of TableRow class holding image, text and another image. Its width is less than group width which leads to offset before and after ...
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
191 views

ExpandableListAdapter: Notifying calling code of changes

I have an Activity that sets an ExpandableListAdapter for an ExpandableListView. I would like the adapter to notify the Activity when its underlying data changes. How is this possible? Thanks, ...

1 2