我没有看到任何类似于我的问题的帖子。我有一个radiogroup
,它有两个按钮,如下所示,
<RadioGroup
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<RadioButton
android:id="@+id/basic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<RadioButton
android:id="@+id/advanced"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</RadioGroup>
在我的应用程序中,有时我需要一个我动态添加的按钮,例如,
button=new AppCompatRadioButton(Activity.this);
button.setId(R.id.my_custom_id);
radiogroup.addView(button);
该无线电组的Oncheckedchangelistener代码,
(radioGroup).setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
if(checkedId== R.id.basic) {
button.setChecked(false);
//my code
}
else if(checkedId== R.id.advanced) {
button.setChecked(false);
//my code
}
else {
//it is newly added button's part
}
}
});
问题是,当选中新添加的按钮时,它不是 单击其他按钮时取消选中。我试图解决这个问题
OnCheckedChangeListener
时设置button.setChecked(false);
其他按钮被检查。但它不起作用。我不知道是哪个品牌 那个问题。
任何人都可以帮助我。谢谢!
答案 0 :(得分:2)
不是通过java代码以编程方式制作单选按钮,而是将该单选按钮放在xml文件中,但最初将android:visibility设置为off,这将确保您的最后一个单选按钮不可见:
<RadioGroup
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<RadioButton
android:id="@+id/basic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<RadioButton
android:id="@+id/advanced"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<RadioButton
android:id="@+id/new_radio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility:"gone"
/>
</RadioGroup>
并且,当您需要使用单选按钮时,然后在java类中,再次显示单选按钮,如下所示:
button.setVisibility(View.VISIBLE);
然后,你最好使用setOnCheckedChangeListener:
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId)
{
//your code
});
答案 1 :(得分:1)
初始化RadioButton时使用您的Activity类上下文。
而不是Activity.this
使用MainActivity.this
以下是您的活动中的完整工作代码:
RadioGroup group = (RadioGroup) findViewById(R.id.group);
group.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
Log.d("chk", "id" + checkedId);
if (checkedId == R.id.basic) {
//some code
Toast.makeText(MainActivity.this, "First", Toast.LENGTH_SHORT).show();
} else if (checkedId == R.id.advanced) {
//some code
Toast.makeText(MainActivity.this, "Second", Toast.LENGTH_SHORT).show();
} else if (checkedId == R.id.my_custom_id) {
//some code
Toast.makeText(MainActivity.this, "Third", Toast.LENGTH_SHORT).show();
}
}
});
RadioButton button = new RadioButton(this);
button.setId(R.id.my_custom_id);
button.setText("Dynamic Button");
group.addView(button);
group.clearCheck();
在你的布局Xml中:
<RadioGroup
android:id = "@+id/group"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<RadioButton
android:id="@+id/basic"
android:layout_width="wrap_content"
android:text="Basic"
android:layout_height="wrap_content"
/>
<RadioButton
android:id="@+id/advanced"
android:layout_width="wrap_content"
android:text="Advanced"
android:layout_height="wrap_content"
/>
</RadioGroup>