我使用示例构建我的应用程序 http://www.androidbegin.com/tutorial/android-search-listview-using-filter
最初当点击listview项时,它会重定向到单个项目视图,但我会对该部分代码进行注释,以便在单击项目时没有任何反应。代码从 //将单个项目单击数据发送到SingleItemView类
然后在listview_main.xml中我将listview xml修改为
<ListView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/search"
android:choiceMode="singleChoice"
android:listSelector="#003366" />
我希望当我点击一个项目时,它会突出显示并保持突出显示,但它没有发生。