Android - ListView doesn't receive OnItemClick for textview with clickable links

前端 未结 5 2070
野趣味
野趣味 2021-02-02 12:55

I have a ListView that contains a TextView in each row besides a number of other views. The TextView renders html content which may contain links.

The below code appear

5条回答
  •  独厮守ぢ
    2021-02-02 13:23

    This is actually a BUG. To resolve this you can add android:descendantFocusability="blocksDescendants" you your ListView's rows layout xml. For e.g

    
    
     
    
    

    Source : this and this

    Good Luck :)

提交回复
热议问题