Tagged Questions

2
votes
1answer
2k views

Android - CheckBox blocks ExpandableListView.OnGroupClickListener

I'm trying to put a checkbox into ExpandableListView. How do I do that? I extend BaseExpandableListAdapter and put the following into getGroupView(): @Override public View getGroupView(int ...
0
votes
1answer
397 views

Like to know how to get selected item in Expandable List ANDROID

I have an expandable list that contains groups : continents and child : countries. When one country is clicked i want the country to be displayed in a textview on another class. package com.zeus.eca; ...
0
votes
1answer
308 views

Problem setting onChildClickListener for an ExpandableListView

I am having a problem getting my click listener for the expandable list view to work. Am I implementing this correctly? Code: elv = getExpandableListView(); // Set up the adapter mAdapter = new ...
0
votes
1answer
172 views

Can I have multiple onClickListeners for the same expandableListView?

I have an onClickListener sucessfully set up for my custom ExpandableListView elv.setOnChildClickListener(new OnChildClickListener() { public boolean onChildClick(ExpandableListView parent, View ...
0
votes
2answers
1k views

ListView OnClickListener not working within TabActivity

I have a ListView and an ExpandableListView inside of a TabActivity. I have overridden the setOnItemClickListener for the ListView. I have 2 tabs and one uses the ListView and the other uses the ...