Adding A Viewgroup To A Listview?
Doing some R&D for my company. We are trying to have a listView that contains an imageview, and two edit boxes for each entry in the listview.
Solution 1:
Subviews aren't focusable in a listview by default. This is to prevent odd trackball/non-touch navigation behavior. That might be why your edittexts aren't responding to input. Make sure you're calling the ListView.setItemsCanFocus(true) method.
Post a Comment for "Adding A Viewgroup To A Listview?"