0

当用户尝试单击我的空 listView 中的背景时,我正在尝试处理 onClick 事件 - 即没有项目。ADK 不想让我将 onClickListener 添加到 ListView,而是坚持认为添加 onItemClickListener 是可行的方法 - 但显然这不适用于空列表。我正在为 listItems 使用带有 xml 描述符的 ListActivity。

谁能建议最好的方法来做到这一点?

   <RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true"
    android:fillViewport="true" >

    <TextView
        android:id="@+id/android:item_text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:lines="3" />

</RelativeLayout>
4

3 回答 3

0

当您的列表为空时,您可以添加一些将显示的视图。此视图必须具有 id“空”。(http://developer.android.com/reference/android/app/ListActivity.html) 尝试为这个特殊视图添加 onClick。

于 2012-08-15T07:33:33.857 回答
0

在具有 ListView 的布局中添加:

<ListView 
android:id="@android:id/list" 
android:layout_width="match_parent"
android:layout_height="match_parent" 
/>

<TextView 
android:id="@android:id/empty" 
android:layout_width="match_parent"
android:layout_height="match_parent" 
android:text="No Results" 
/>

现在将 onClickListener 添加到此 TextView。

当 id as 的 ListView@android:id/list为空或尚未填充时,此 TextView 会自动显示

于 2012-08-15T08:35:18.117 回答
0

你应该尝试这样的事情:

<FrameLayout
    android:id="@+id/emptyList"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <ListView />
</FrameLayout>

然后,在您的 Java 代码中,您可以将 onClickListener 添加到您的 emptyList 对象,如果 ListView 的项目计数大于 0,则返回 false (允许单击传递视图层次结构并被您的onItemClickListener.

于 2012-08-15T08:02:12.323 回答