0

如何onClick赶上ListView

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

我怎样才能捕捉到并处理这个事件?

请帮我,

谢谢,丹

4

2 回答 2

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

于 2012-12-04T11:36:10.083 回答
0

尝试创建扩展 ListView 的自定义组件并覆盖 onclick 方法。

于 2012-12-05T14:29:21.997 回答