3

我的活动中有一个 RadioGroup,其中包含四个具有自定义背景的 ToggleButton。我希望用户能够一次选择任何一个按钮,并且永远不应该选择任何按钮,但即使它在 RadioGroup 中并且一切正常,选择已经选择的 ToggleButton 会取消选择它,不留下按钮被选中。

如果用户第二次点击它,如何强制 ToggleButton 保持选中状态?

我的 XML:

<RadioGroup
    android:id="@+id/radio_group"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:orientation="horizontal" />

我的 onCreate() 的相关块:

radioGroup = (RadioGroup) findViewById(R.id.radio_group);
radioGroup.setOnCheckedChangeListener(onRadioGroupClickListener);

for (int index = 0; index < OPTIONS.length; index++) {
    ToggleButton button = new ToggleButton(this);
    button.setId(index);
    button.setText(OPTIONS[index]);
    button.setTextOn(OPTION[index]);
    button.setTextOff(OPTIONS[index]);
    button.setChecked(index == 0); // Set to first option by default
    button.setButtonDrawable(Color.TRANSPARENT);
    button.setBackgroundResource(R.drawable.selector);
    button.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View view) {
            RadioGroup parent = (RadioGroup) view.getParent();
            ToggleButton button = (ToggleButton) view;
            TimesheetLog.d("View is checked: " + button.isChecked());

            parent.check(button.getId());
            currentSelection = view.getId();
        }
    });

    radioGroup.addView(button);
}

如果我需要添加更多代码,请告诉我。谢谢!

4

2 回答 2

1

下面的行应该与切换单击事件在同一类中;

private RadioButton mBtnCurrentRadio;

切换点击事件(应该在活动中);

public void onToggle(View view) {

        final ToggleButton mBtnToggle = (ToggleButton) view;

        // select only one toggle button at any given time
        if (mBtnCurrentToggle != null) {
            mBtnCurrentToggle.setChecked(false);
        }
        mBtnToggle.setChecked(true);
        mBtnCurrentToggle = mBtnToggle;

        // app specific stuff ..
    }

用于布局的 RadioGroup xml 代码;

<RadioGroup
        android:id="@+id/toggleGroup"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="24dp"
        android:orientation="horizontal" >

        <ToggleButton
            android:id="@+id/btn_Letter"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:onClick="onToggle"
            android:textOff="Letter"
            android:textOn="Letter"
            style="@style/toggleBtnStyle" />

        <ToggleButton
            android:id="@+id/btn_A4"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:onClick="onToggle"
            android:textOff="A4"
            android:textOn="A4"
            style="@style/toggleBtnStyle" />

        <ToggleButton
            android:id="@+id/btn_A3"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:onClick="onToggle"
            android:textOff="A3"
            android:textOn="A3"
            style="@style/toggleBtnStyle" />
    </RadioGroup>
于 2014-09-11T12:56:16.623 回答
0

我有同样的问题,只是想通了。

如果您添加一行,则使用您在问题中的代码片段:

button.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View view) {
        RadioGroup parent = (RadioGroup) view.getParent();
        ToggleButton button = (ToggleButton) view;
        TimesheetLog.d("View is checked: " + button.isChecked());

        // -------------------------------------------------
        parent.clearCheck(); // <----------- ADD THIS-------
        // -------------------------------------------------
        parent.check(button.getId());
        currentSelection = view.getId();
    }
});

我相信它应该工作。我认为正在发生的是该check()方法实际上是它自己的切换。如果我们每次都清除检查,那么之后每次调用 check() 都会保证它处于按下状态。这使得取消选中 ToggleButton 成为不可能。

于 2016-04-21T08:06:37.890 回答