gpt4 book ai didi

android - 加入 radio 组

转载 作者:行者123 更新时间:2023-11-30 03:48:13 25 4
gpt4 key购买 nike

有没有一种方法可以一起加入单选组,所以当单击 a 组中的按钮时,取消单击 b 组中的按钮

     <RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_below="@id/NFCHeaderTextView"
android:layout_width="fill_parent"
android:background="@drawable/back"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/hello">

<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:background="@drawable/back"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/RadioGroup">
</RadioGroup>
<TextView android:id="@+id/Savings"
android:background="@drawable/two_tone_green_button_selector"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
android:textSize="16dp"
android:gravity="left|center_vertical"
android:textColor="@color/two_green_button_color_selector"
android:onClick="onRadioButtonClicked"
android:text="@string/Savings"/>

<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:background="@drawable/back"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/SavingsR">
</RadioGroup>

<TextView android:id="@+id/Credit"
android:background="@drawable/two_tone_green_button_selector"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
android:textSize="16dp"
android:gravity="left|center_vertical"
android:textColor="@color/two_green_button_color_selector"
android:onClick="onRadioButtonClicked"
android:text="@string/Credit"/>

<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:background="@drawable/back"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/CreditR">
</RadioGroup>
</RadioGroup>
</RelativeLayout>

我有这段代码,但是当我运行它时,我仍然可以点击来自两个不同组的两个按钮,我在 eclipse 中使用 java

最佳答案

编辑:

我很快写了一些示例代码,在这个例子中我们有两个不同的radiogroup,但是这两个组中只有一个radiobutton可以被选中。我们使用 OnCheckedChangeListener 来捕获与 RadioGroup 内单选按钮状态变化相关的事件。这是一些示例代码,并不是处理 OnCheckedChangeListener 回调的正确方法,我只是想向您展示一个包含两个 radio 组的示例。我希望这对您有所帮助。

Java:

    final RadioGroup group1 = (RadioGroup) findViewById(R.id.radiogroup1);
final RadioGroup group2 = (RadioGroup) findViewById(R.id.radiogroup2);

group1.setOnCheckedChangeListener(new OnCheckedChangeListener() {

@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
((RadioButton)group2.findViewById(R.id.option4)).setChecked(false);
((RadioButton)group2.findViewById(R.id.option5)).setChecked(false);
((RadioButton)group2.findViewById(R.id.option6)).setChecked(false);
}
});

group2.setOnCheckedChangeListener(new OnCheckedChangeListener() {

@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
((RadioButton)group1.findViewById(R.id.option1)).setChecked(false);
((RadioButton)group1.findViewById(R.id.option2)).setChecked(false);
((RadioButton)group1.findViewById(R.id.option3)).setChecked(false);
}
});

XML:

   <RadioGroup
android:id="@+id/radiogroup1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<RadioButton
android:id="@+id/option1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 1" />

<RadioButton
android:id="@+id/option2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 2" />

<RadioButton
android:id="@+id/option3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 3" />
</RadioGroup>

<RadioGroup
android:id="@+id/radiogroup2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<RadioButton
android:id="@+id/option4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 4" />

<RadioButton
android:id="@+id/option5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 5" />

<RadioButton
android:id="@+id/option6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 6" />
</RadioGroup>

原创:

使用 OnCheckedChangeListener , 这个监听器在 Radio 状态改变时被调用。使用此功能,您可以循环其他 RadioGroup 以取消选中其他单选按钮。

希望对你有帮助,

如果不在下面评论

关于android - 加入 radio 组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14592426/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com