当用户尝试单击我的空 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>