在无线电组中使用两个线性布局的单选按钮不起作用

时间:2016-05-03 09:35:20

标签: android radio-button radio-group

我想制作如下图像。

enter image description here

我尝试使用线性布局设计,但在无线电组中使用其网络。  在广播组中只有两个方向垂直或水平,所以我怎么能达到这样的目的。

它应该在同一个广播组中,因为它选择相同的问题。

提前感谢。

2 个答案:

答案 0 :(得分:2)

试试这个。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"

android:orientation="vertical" >

<RadioGroup
    android:id="@+id/radioGroup1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 

    android:orientation="horizontal">

    <RadioButton
        android:id="@+id/radio0"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="RadioButton" />

    <RadioButton
        android:id="@+id/radio1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="RadioButton" />


</RadioGroup>

<RadioGroup
    android:id="@+id/radioGroup2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:orientation="horizontal">

    <RadioButton
        android:id="@+id/radio3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="RadioButton" />

    <RadioButton
        android:id="@+id/radio4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="RadioButton" />


</RadioGroup>

</LinearLayout>

Java代码:

private OnCheckedChangeListener listener1 = new OnCheckedChangeListener() {

    @Override
    public void onCheckedChanged(RadioGroup group, int checkedId) {
        if (checkedId != -1) {
            m_group2.setOnCheckedChangeListener(null); // remove the listener before clearing so we don't throw that stackoverflow exception(like Vladimir Volodin pointed out)
            m_group2.clearCheck(); // clear the second RadioGroup!
            m_group2.setOnCheckedChangeListener(listener2); //reset the listener
           // Log.e("XXX2", "do the work");

            int chkId1 = m_group1.getCheckedRadioButtonId();
            int chkId2 = m_group2.getCheckedRadioButtonId();
            int realCheck = chkId1 == -1 ? chkId2 : chkId1;

            RadioButton rb = (RadioButton)findViewById(realCheck);
            selected_mode = rb.getText().toString();
            Log.i("Selected_Mode", "" + selected_mode);
        }
    }
};

private OnCheckedChangeListener listener2 = new OnCheckedChangeListener() {

    @Override
    public void onCheckedChanged(RadioGroup group, int checkedId) {
        if (checkedId != -1) {
            m_group1.setOnCheckedChangeListener(null);
            m_group1.clearCheck();
            m_group1.setOnCheckedChangeListener(listener1);
            //Log.e("XXX2", "do the work");

            int chkId1 = m_group1.getCheckedRadioButtonId();
            int chkId2 = m_group2.getCheckedRadioButtonId();
            int realCheck = chkId1 == -1 ? chkId2 : chkId1;

            RadioButton rb = (RadioButton)findViewById(realCheck);
            selected_mode = rb.getText().toString();
            Log.i("Selected_Mode", "" + selected_mode);
        }
    }
};
  

将侦听器调用OnCreate()

m_group1.setOnCheckedChangeListener(listener1);
m_group2.setOnCheckedChangeListener(listener2);

答案 1 :(得分:-1)

  1. 声明一个类型为“ mCurrentId”的字段,其中包含选中的单选按钮ID
  2. 声明一个int数组,以容纳所有radioButtons id。
  3. 将您的radioButtons放置在xml中,但是要给每个ID一个ID。

在YourActivity.onCreate中:

setUpRadioButtons();

在您的活动中:

  //fields
  int[] myRadioButtons;
  int currentCheckedRadioButton = 0;

  //setUpRadioButtons method
  private void setUpRadioButtons() {
    myRadioButtons= new int[6];
    myRadioButtons[0] = R.id.first;
    myRadioButtons[1] = R.id.second;
    //..
    for (int radioButtonID : myRadioButtons) {
        findViewById(radioButtonID).setOnClickListener(
                    new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (currentCheckedRadioButton != 0)
                    ((RadioButton) findViewById(currentCheckedRadioButton)).setChecked(false);
                currentCheckedRadioButton = v.getId();

            }
        });
    }
}