web-dev-qa-db-ja.com

リストアイテムのクリックでCheckBoxの状態を変更しますか?

リストとそのすべての行にチェックボックスがあります。行をクリックするたびに、チェックボックスの状態がそれに応じて変化するようにします。

checkbox.xml

<CheckBox
    Android:id="@+id/CheckBox"
    Android:layout_width="wrap_content"
    Android:layout_height="wrap_content"
    Android:focusable="false"
    Android:text="" />

リストのリスナーをクリックします

protected void onListItemClick(ListView l, View v, int position, long id) {
    Toast.makeText(getApplicationContext(), "You have selected item no."
            + (position + 1) + "", Toast.LENGTH_SHORT).show();

    super.onListItemClick(l, v, position, id);
    selectedRow = position;

    if (v == null) {
        LayoutInflater lif = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        v = lif.inflate(R.layout.posting_detail_question_row, null);
    }

    if (checkedTextView.isChecked()) {
        Toast.makeText(getApplicationContext(), "Already voted",
                Toast.LENGTH_SHORT).show();
    } else {
        String[] from = {"option", "votes"}; // values to fetch from
        // hashmap
        int[] to = {R.id.option, R.id.votes}; // id's for the view

        SimpleAdapter adp = new SimpleAdapter(getApplicationContext(),
                hashList, R.layout.posting_detail_question_row, from, to);
        setListAdapter(adp);
        checkedTextView.setChecked(true);
    }
}

posting_detail_question_row.xml

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:layout_width="fill_parent"
    Android:layout_height="40dp"
    Android:orientation="vertical">

    <LinearLayout
        Android:layout_width="match_parent"
        Android:layout_height="fill_parent"
        Android:background="@drawable/poll_border_top_bg"
        Android:orientation="horizontal">

        <TextView
            Android:id="@+id/option"
            Android:layout_width="0dp"
            Android:layout_height="fill_parent"
            Android:layout_marginLeft="10dp"
            Android:layout_weight=".3"
            Android:gravity="center_vertical"
            Android:text="Answer 1"
            Android:textColor="#333333"
            Android:textSize="15sp" />

        <TextView
            Android:id="@+id/votes"
            Android:layout_width="0dp"
            Android:layout_height="fill_parent"
            Android:layout_marginLeft="10dp"
            Android:layout_weight="1"
            Android:gravity="center_vertical"
            Android:textColor="#333333"
            Android:textSize="15sp" />

        <CheckBox
            Android:id="@+id/CheckBox"
            Android:layout_width="wrap_content"
            Android:layout_height="wrap_content"
            Android:focusable="false"
            Android:text="" />
    </LinearLayout>
</LinearLayout>

私のアダプターはSimpleAdapterです:

    SimpleAdapter adp = new SimpleAdapter(getApplicationContext(),
            hashList, R.layout.posting_detail_question_row, from, to);
    Log.v("MyLog", "after simple adapter");
    setListAdapter(adp);
24
user934357

FindViewByIdを使用して、チェックボックスへのポインターを取得する必要があります。

protected void onListItemClick(ListView l, View v, int position, long id) {

    Toast.makeText(getApplicationContext(), "You have selected item no."
                 +(position+1)+"", Toast.LENGTH_SHORT).show();

    super.onListItemClick(l, v, position, id);

    if (v != null) {
        CheckBox checkBox = (CheckBox)v.findViewById(R.id.Checkbox);
        checkBox.setChecked(!checkBox.isChecked());
    }
}

OnClickイベントを受け取る場合、vは決してnullであってはなりませんが、適切なチェックを行っています。

43
Merlin

OnListItemClick内でこれを行います。

CheckBox cb = (CheckBox) v.findViewById(R.id.CheckBox);
cb.setChecked(!cb.isChecked());
8
gomes
CheckBox checkBox = (CheckBox) v.findViewById(R.id.CheckBox);
checkBox.setChecked(true);
2
Yahor10

完全なコードは次のとおりです。addapterを設定した後、これを追加できます。

list.setOnItemClickListener(new AdapterView.OnItemClickListener(){


        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

           String message = "Item " + position;
           Toast.makeText(MainActivity.this, message, Toast.LENGTH_SHORT).show();

            CheckBox cb = (CheckBox) view.findViewById(R.id.checkbox);
            cb.setChecked(!cb.isChecked());


        }


    });
0
Jakir Hossain