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>
今私が実際に持っているのは、1つのアクティビティに2つのListViewがあり、1つのListViewでアイテムが
選択されたときに、もう1つの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);
しかし、それはうまくいかないようです。