OnItemCLickListener not working in listview

前端 未结 24 2270
悲&欢浪女
悲&欢浪女 2020-11-22 11:21

Activity class code:

conversationList = (ListView)findViewById(android.R.id.list);
ConversationArrayAdapter conversationArrayAdapter=new  Conver         


        
24条回答
  •  独厮守ぢ
    2020-11-22 11:47

    if you have textviews, buttons or stg clickable or selectable in your row view only

    android:descendantFocusability="blocksDescendants"
    

    is not enough. You have to set

    android:textIsSelectable="false"
    

    to your textviews and

    android:focusable="false"
    

    to your buttons and other focusable items.

提交回复
热议问题