ListView items are not clickable. why?

后端 未结 11 2508
借酒劲吻你
借酒劲吻你 2020-11-29 08:12

I have a ListView that uses a customized adapter, but I can\'t click on the ListView Item ..

Activity for list view ..

package com.adham         


        
11条回答
  •  南笙
    南笙 (楼主)
    2020-11-29 08:50

    I had the same issue with a ListView which contained only a RadioButton:

    
    
    
    
    
    
    

    I used the RadioButton in each row to display the default item selection, to make ListView handle clicks I had to use:

    radioButton.setFocusableInTouchMode(false);
    radioButton.setFocusable(false);
    

    or in the XML-file:

    android:focusable="false" 
    android:focusableInTouchMode="false"
    

    So it is a focus related issue... With the above modifiers the focus is directed to ListView on click.

提交回复
热议问题