有沒有辦法清除ListView中的選定項目?清除SingleChoice 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。
兩個列表視圖提高項目被點擊以下處理:
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);
但是,這似乎並沒有上班。
這似乎工作,沒有試過那個,謝謝 – TimothyP 2013-03-04 01:43:00
什麼是=>符號?我從來沒有見過在android代碼中使用過。 – 2014-06-30 21:53:12
@IgorGanapolsky這是一個lambda表達式,一個匿名方法。這是C#。在Java中,您有'IOnClickListener'實現。 – Cheesebaron 2014-07-01 08:40:54