Tagged Questions

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, ...
1
vote
1answer
192 views

Android: Get number of groups in ExpandableListView?

is there a way to get the number of groups in an ExpandableListView? Or do I have to "remember" how many group items I have added?
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
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
26 views

How to create widget with ExpandableListView?

I want to create widget which will show some information divided into categories. I came with idea to use ExpandableListView in my widget. Is is possible? If yes - how to do this?
0
votes
1answer
136 views

Expandable ListView with custom objects

I'm fairly new to android and am slowly adjusting to how android works. I am in the process of creating an android application which uses a .net web service to pull back data from a sql database. I ...
0
votes
1answer
235 views

Swipe action on a List Item?

Is there a way in android to implement a swipe action on a specific list item? I am using ExpandableListView, and I would like to be able to swipe on a particular list item to get it's view and ...
0
votes
1answer
49 views

Is there a way to relate a specific child view with a viewgroup?

What I am trying to do is relate each child view with the viewgroup...in the code to create the child view, a new view group is created with it's elements. Are these automatically associated? I want ...
0
votes
1answer
66 views

Is there a way to nest an ExpandableListView inside of a RelativeLayout?

What I would like to do is create a Layout with buttons, edittexts, an textviews on the left side, and have the ExpandableListView on the right. Is there any way to do this? I have googled, but I ...
0
votes
2answers
175 views

Event click on ListView (extends ListActivity)

i have this code but i can't see the action when i click on a item from the list. This code shows me the info on ArrayList profilesArrayList but i dont know how i check what item i am selecting form ...
0
votes
0answers
50 views

Need to put code after onGroupExpandListener

I have some code that needs to execute when my expandableListView is expanded so I put it in an onGroupExpandListener. Based on the debugger, it appears my code is running after the parent is clicked ...
0
votes
3answers
49 views

Can I get a view if I know the group position and child position?

Is it possible to do something like this pseudo code? View v = findView(groupPosition, childPosition)
0
votes
1answer
101 views

Can i find an expandablelistview item based on text

Is this sudo code possible? for (all children in my custom expandable list) { if (childItemText.equals("This string") { viewWithTextIWant.setBackgroundResource(R.color.blue) } } ...
0
votes
1answer
356 views

ExpandableListView open collapse problem

I am using a custom expandable list adapter. I highlight a child when the user clicks on it. This works fine until the user opens/collapses a group. Say the user touches Group 2 Item 1. This ...
0
votes
2answers
205 views

Android: How to make child rows in ExpandableListView non-cklickable?

Guess this is pretty simple, but searching didn't help... I want an ExpandableListView, where you can not select the child rows. I tried to set the selector to "transparent", but it still changed ...
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
351 views

Android: Access TextView inside Child of ExpandableListViewActivity

I am using an ExpandableList via ExpandableListViewActivity. Now, I would like to change the text colour of a certain TextView inside each ChildView. I don't want them all to be the same, rather ...