I have got a ListView
, whose a TextView
a ToogleButton
. Now I have to implement a context menu for my ListView
. But if the toggle buttons are visible, context menu won't show up. onListItemClick
doesn't work, either. Why?
@ChiragRaval, I have found the solution.
android:focusable="false"
for the ToggleButton
is what I need. Now both the ToggleButton
s and the context menu work.