有没有办法清除 ListView 中的选定项目?
ListView 的定义如下:
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minHeight="50dp"
android:id="@+id/example_list"
android:layout_weight="2"
android:choiceMode="singleChoice"/>
并使用自定义适配器填充。
使用选择器突出显示所选项目:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" >
<shape>
<gradient
android:startColor="#3E5260"
android:endColor="#3E5260"
android:angle="270" />
</shape>
</item>
<item android:state_activated="true">
<shape>
<gradient
android:startColor="#3E5260"
android:endColor="#3E5260"
android:angle="270" />
</shape>
</item>
</selector>
现在我真正拥有的是单个活动中的 2 个 ListView,当
在一个 ListView 中选择一个项目时,我想取消选择另一个 ListView 中的项目。
单击项目时,两个 ListView 都会引发以下处理程序:
void DeviceList_Click(object sender, EventArgs e)
{
//easy enough to check which ListView raised the event
//but then I need to deselect the selected item in the other listview
}
我试过这样的事情:
exampleList.SetItemChecked(exampleList.SelectedItemPosition, false);
和
exampleList.SetSelection(-1);
但这似乎不起作用。