how to make custom listview with clickable to each items(I mean , I am making a listview which holds one image button, two textview and I want to access position when user click items then it is not showing clickable. ).
|
closed as too localized by RobinHood, ollo, Craig Swing, Alexis Pigeon, Peter DeWeese Mar 14 at 13:54
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
I think this will help you..
|
|||
|
@Override public void onListItemClick(ListView l, View v, int position, long id) {
} |
|||||
|
|
You can achieve this in the It would roughly be like using -- Edit -- A similar question Go through this linked question and the accepted answer also. |
||||
|
You can inflate the custom layout in your listview which contains the listview_row.xml
In your main activity layout add the listview as below: main.xml
After creating the layouts as above create a adapter class to add the custom layout in your listview with the extending
In that adpater class's
After that in your activity you can acess the listview and set onItemclick listener for it to access listview's list items as below:
|
|||
|
|
