Android WebView inside ListView onclick event issues

前端 未结 6 1197
太阳男子
太阳男子 2020-12-25 09:03

I have a ListView where each row has two webviews side by side, taking up the entire row. I\'ve set up onListItemClick() in my ListActivity, but they are not fired when I ta

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-25 09:13

    Setup to parent layout of each WebView:

    android:descendantFocusability="blocksDescendants" 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    

提交回复
热议问题