14

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);

しかし、それはうまくいかないようです。

4

5 に答える 5

27

ここでの使用listView.SetItemChecked(-1, true);は問題なく機能します。

これが私がテストした私のアクティビティです:

SetContentView(Resource.Layout.Main);
var listView = FindViewById<ListView>(Resource.Id.listView);
_listAdapter = new CustomListAdapter(this);
listView.Adapter = _listAdapter;

var button = FindViewById<Button>(Resource.Id.removeChoice);
button.Click += (sender, args) => listView.SetItemChecked(-1, true);

Main.axml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
    >
  <ListView
    android:id="@+id/listView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:choiceMode="singleChoice"
  />
  <Button
    android:id="@+id/removeChoice"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="remove choice"
    />
</LinearLayout>
于 2013-03-02T01:45:29.213 に答える
18

clearChoices()を使用して、ListView内のすべてのアイテムのチェック状態をクリアします

于 2013-02-26T04:38:15.423 に答える
2

それは私にとって簡単に機能します:

ListView listView = (ListView) findViewById(R.id.idMyListView);
         listView.clearFocus();
于 2013-06-04T19:56:33.357 に答える
1

これは古い質問ですが、@ Cheesebaronの回答に基づいて、将来誰かがそれを必要とする場合に備えて、これが私がしたことです。

各ListViewOnItemClickListenerで、他のリストのチェック項目をfalseに設定します。

list1.setOnItemClickListener(new AdapterView.OnItemClickListener() {
        public void onItemClick(AdapterView<?> parent, View view, int pos, long id) {
            list2.setItemChecked(list2.getSelectedItemPosition(), false);
        }
});

この実装はJavaで行われますが、ここでロジックを取得すると、C#でも実装できます。お役に立てれば。

于 2015-07-31T08:50:27.823 に答える
0

CHOICE_MODE_SINGLE/singleChoiceの場合

int v = listView.getCheckedItemPosition();
if (v >= 0)
    listView.setItemChecked(v, false);
于 2018-09-26T09:46:31.170 に答える