If I have a fragment containing a ListView where each row is a series of clickable elements (say, 3 buttons) filling all available space on the row, can I possibly have a long click callback for the entire row?
I want the user to be able to click on any of the three elements with a quick click but the long click should select the entire row/entry.
I have tried hooking up the ListView with the setOnItemLongClickListener
while setting android:longClickable
on the individual elements in the layout, but I never see the callback get hit for the long press.
Is this feasible? Do I need to have each element listen for the long click and push it back to the ListView somehow?