如何捕获onClick ListView(我不想onItemClickListener)

时间:2012-12-04 11:26:19

标签: android listview adapter onclicklistener

如何在onClick上抓住ListView

即使列表中没有项目,我也需要捕获点击事件。我试图在ListView的父视图上放置onClickListener,但ListView吸收了该事件并且不让我知道。

如何捕获并处理此事件?

请帮帮我,

谢谢, 丹

2 个答案:

答案 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方法。