如何在onClick
上抓住ListView
?
即使列表中没有项目,我也需要捕获点击事件。我试图在ListView的父视图上放置onClickListener,但ListView吸收了该事件并且不让我知道。
如何捕获并处理此事件?
请帮帮我,
谢谢, 丹
答案 0 :(得分:1)
如果你不想要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
答案 1 :(得分:0)
尝试创建扩展ListView的自定义组件并覆盖onclick方法。