如何onClick
赶上ListView
?
即使列表中没有项目,我也需要捕获点击事件。我试图将 onClickListener 放在 ListView 的父视图上,但 ListView 吸收了该事件并且不让我知道。
我怎样才能捕捉到并处理这个事件?
请帮我,
谢谢,丹
如何onClick
赶上ListView
?
即使列表中没有项目,我也需要捕获点击事件。我试图将 onClickListener 放在 ListView 的父视图上,但 ListView 吸收了该事件并且不让我知道。
我怎样才能捕捉到并处理这个事件?
请帮我,
谢谢,丹
如果您不想要 onitemclick,一种简单而愚蠢的方法
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent">
</ListView>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent">
</ImageView>
</RelativeLayout>
.
then put onClickListener to ImageView
:P
尝试创建扩展 ListView 的自定义组件并覆盖 onclick 方法。