我的应用程序有几个RelativeLayout
s,每个都有 aTextView
和 a ListView
。我已经使RelativeLayout
s 可点击(并且效果很好)。问题是,ListView
嵌入其中的 s 也是可点击的,并且每当用户尝试点击RelativeLayout
列表中的区域时,点击会注册为列表。
我尝试将ListView
s 设置为clickable="false"
和focusable="false"
. 我试过s descendantsFocusability="blocksDescendants"
。RelativeLayout
那些行不通。
解决方案是什么?这是我的第一个应用程序,我错过了什么吗?