Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android组不工作_Android_Xml_Xamarin - Fatal编程技术网

Android组不工作

Android组不工作,android,xml,xamarin,Android,Xml,Xamarin,我正在尝试创建两行单选按钮,如下图所示。 但是当我直接把它放在上面的时候,我的无线电组没有工作 直线布局 我是android开发新手。因此,如果有更好的选择。 他们是受欢迎的 我的代码 <RadioGroup android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <LinearLayout

我正在尝试创建两行单选按钮,如下图所示。 但是当我直接把它放在上面的时候,我的无线电组没有工作 直线布局

我是android开发新手。因此,如果有更好的选择。 他们是受欢迎的

我的代码

<RadioGroup
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/linearLayout2"
        android:background="@android:color/holo_blue_dark">
        <RadioButton
            android:text="1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/radioButton33" />
        <RadioButton
            android:text="2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/radioButton34" />
        <RadioButton
            android:text="3"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/radioButton35" />
        <RadioButton
            android:text="4"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/radioButton36" />
        <RadioButton
            android:text="5"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/radioButton37" />
        <RadioButton
            android:text="6"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/radioButton38" />
        <RadioButton
            android:text="7"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/radioButton39"
            android:layout_marginRight="1.0dp" />
    </LinearLayout>
    <LinearLayout
        android:orientation="horizontal"
        android:minWidth="25px"
        android:minHeight="25px"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/linearLayout3"
        android:background="@android:color/holo_blue_dark">
        <RadioButton
            android:text="8"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/radioButton40" />
        <RadioButton
            android:text="9"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/radioButton41" />
        <RadioButton
            android:text="10"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/radioButton42" />
        <RadioButton
            android:text="11"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/radioButton43" />
        <RadioButton
            android:text="12"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/radioButton44" />
        <RadioButton
            android:text="13"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/radioButton45" />
        <RadioButton
            android:text="14"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/radioButton46" />
    </LinearLayout>
</RadioGroup>


谢谢

您可以创建2个无线电组,并处理从RadioButtonCliked事件开始的所有内容 比如说

public void RadioButtonClicked(View view) {
    boolean checked = ((RadioButton) view).isChecked();

    switch(view.getId()) {
        case R.id.radioButton33: {  
            NameRadioGroup2.clearCheck();
            NameRadioGroup1.check(view.getId());
            break;
        }

        case R.id.radioButton40: {
            NameRadioGroup1.clearCheck();
            NameRadioGroup2.check(view.getId());          
            break;
        }
        {here implement cases for other radio buttons}
}


public void RadioButtonClicked(View view) {
    boolean checked = ((RadioButton) view).isChecked();
    if(ButtonFromRadioGroupOne(view.getId())
    {
       NameRadioGroup2.clearCheck();
       NameRadioGroup1.check(view.getId());
    }
    else
    {
       NameRadioGroup1.clearCheck();
       NameRadioGroup2.check(view.getId());
    }
}

private bool ButtonFromRadioGroupOne(int id)
{
    return id == R.id.radioButton33 || id == R.id.radioButton34 || id == R.id.radioButton35 || id == R.id.radioButton36 || id == R.id.radioButton37 || id == R.id.radioButton38 || id == R.id.radioButton39;
}
或者,您可以为每个广播组设置2个RadioButtonClicked事件

public void RadioButtonClicked1(View view) {
    RadioButtonClicked(NameRadioGroup1, NameRadioGroup2, view);
}

public void RadioButtonClicked2(View view) {
    RadioButtonClicked(NameRadioGroup2, NameRadioGroup1, view);
}

public void RadioButtonClicked(RadioGroup selected, RadioGroup cleared, View view) {
    boolean checked = ((RadioButton) view).isChecked();
    cleared.clearCheck();
    selected.check(view.getId());
}     
我修好了

首先,我创建了一个扩展方法来从视图中获取te child

static class Extention
    {
        public static List<T> Childs<T>(this ViewGroup view) where T : View
        {
            List<T> childs = new List<T>();
            for (int i = 0; i < view.ChildCount; i++)
            {
                var selectedView = view.GetChildAt(i) as T;
                if (view != null)
                {
                    childs.Add(selectedView);
                }
            }
            return childs;
        }
    }

单选按钮的根布局应该是RadioGroup,否则它将独立工作。您不需要使用线性布局…指定android:单选组内的方向…访问此检查此vindulaJ,我使用了此,它来自您给我的链接,但不起作用否。我使用自己的解决方案,因为我太懒了,找不到所有的id;这将给我一个很大的转变。难道没有更好的方法吗?我添加了另一个不带开关的解决方案
LinearLayout Layout2 = FindViewById<LinearLayout>(Resource.Id.linearLayout2);
            LinearLayout Layout3 = FindViewById<LinearLayout>(Resource.Id.linearLayout3);
            Buttons = Layout2.Childs<RadioButton>();  
            Buttons.AddRange(Layout3.Childs<RadioButton>());
            foreach(RadioButton button in Buttons)
            {
                button.CheckedChange += RadioButton_Check;
            }
 public bool InUse = false;
        private void RadioButton_Check(object sender, CompoundButton.CheckedChangeEventArgs e)
        {
            if (InUse) return;
            InUse = true;
            RadioButton Senderbutton = sender as RadioButton;
            foreach (RadioButton button in Buttons)
            {
                button.Checked = false;
            }
            Senderbutton.Checked = true;
            InUse = false;
        }