On click of certain listview items, I need to show sub item under the item clicked.
Could some one please throw some light on this?
If you are talking about Expandable List then just look at this example.
ExpandableList1.java
Also this ExpandableListView
You can try out an ExpandableListView in Android.
Related
I'm trying to make a screen that have an expandable categories
each category have items that when clicked i want it to be added to an element in the same screen like this pic
and when the unselect (red one) is pressed it remove it from the list
any ideas on how to implement this or suggestion for similar components
You may try using expanable-recycler-view from bignerdranch, to remove item from view, just
Remove item form data list when red button is pressed and
Notify adapter for change using notifyDataSetChanged()
Hope this help, thank you. :)
Is it possible to handle click of listview as well as its childview like checkbox in android?
If i understand it right, you want to have a Listview, where you can click on particular rows and also on checkboxes that are in this rows?!
Thats possible, you have to set OnClickListener/OnLongClickListener for the row clicks and an OnCheckedChangeListener for each checkbox.
Is that what you wanted?
Here is another solution which can handle click for both list row as well as its child view.
Refer this link.
Android custom ListView unable to click on items
I hope it will help you. :)
I got a ListView with TextView in it.
Upon Clicking the ListView Item, I want to add a Layout(.xml file) with a single ListView item pushing the next ListView items below. The layout is just a ListView item with TextView and a Button.
Is it possible to generate such a scenario ??
Thanks,
Siva Kumar
What you need to do is get the adapter from the listview and add items to this adapter. You can refer to the following question asked here previously
Dynamic ListView in Android app
in an android expandable listview, i need to make thechildren displayed, only on pressing the expand collapse nodes..ie; i do notwant to show the children on pressing the row of the expandable listview..how can i accomplish it?
Regards,
Rony
I guess you want the expandable listview always expand without click group?
You can check this question How to keep ExpandableListView in expanded status? and Expandable ListView .
I am following an expandable list tutorial and the expandable functionality is working fine:
http://mylifewithandroid.blogspot.com/2008/05/expandable-lists.html
I don't know which event to implement. I need to handle checkboxes in a list when I click on checkbox when it expands the list. How do I distinguish a list click with checkbox placed in an expandable list?
Or, kindly refer me to tutorial same as expandablelist view with checkboxes.
I found the solution here...
http://mylifewithandroid.blogspot.com/2010/02/expandable-lists-and-check-boxes.html