1

Is it possible to handle click of listview as well as its childview like checkbox in android?

Himanshu Dudhat
  • 1,609
  • 3
  • 14
  • 27

2 Answers2

1

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?

Tobi N
  • 554
  • 6
  • 22
1

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. :)

Community
  • 1
  • 1
Himanshu Dudhat
  • 1,609
  • 3
  • 14
  • 27