Android中单选按钮对齐单选按钮

时间:2014-05-01 07:24:56

标签: android xml radio-button alignment

我有4个RadioButtons(同一个RadioGroup的一部分),我想像这样对齐它们: enter image description here

我正在使用的代码是:

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

        <LinearLayout
            android:layout_width="@dimen/zero"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center_horizontal"
            android:orientation="vertical" >

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

            <RadioButton
                android:id="@+id/add_reminder_weekly"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/add_reminder_weekly" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="@dimen/zero"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center_horizontal"
            android:orientation="vertical" >

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

            <RadioButton
                android:id="@+id/add_reminder_yearly"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/add_reminder_yearly" />
        </LinearLayout>
    </RadioGroup>

但是通过使用此代码, RadioGroup会丢失其属性,并且可以同时检查所有RadioButtons

知道RadioGroup如何使用这种对齐方式保留其属性

3 个答案:

答案 0 :(得分:0)

你可以尝试这个......

首先声明所有单选按钮

r1=(RadioButton) findViewById(R.id.add_reminder_daily);
 r2=(RadioButton) findViewById(R.id.add_reminder_weekly);
 r3=(RadioButton) findViewById(R.id.add_reminder_monthly);
 r4=(RadioButton) findViewById(R.id.add_reminder_yearly);

现在on - onclick listner做

r1.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                    r2.setChecked(false);
                    r3.setChecked(false);
                    r4.setChecked(false);
            }
        });
 r2.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                    r1.setChecked(false);
                    r3.setChecked(false);
                    r4.setChecked(false);
            }
        });
 r3.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                    r2.setChecked(false);
                    r1.setChecked(false);
                    r4.setChecked(false);
            }
        });
 r4.setOnClickListener(new OnClickListener() {
            @Override

            public void onClick(View v) {
                    r2.setChecked(false);
                    r3.setChecked(false);
                    r1.setChecked(false);
            }
        });

答案 1 :(得分:-2)

尝试下面的代码在我的结尾处工作正常: -

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

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_marginLeft="10dp"
            android:gravity="center_horizontal"
            android:orientation="vertical" >

            <RadioButton
                android:id="@+id/add_reminder_daily"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Daily" />

            <RadioButton
                android:id="@+id/add_reminder_weekly"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Monthly" />
        </LinearLayout>

        <LinearLayout
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center_horizontal"
            android:orientation="vertical" >

            <RadioButton
                android:id="@+id/add_reminder_monthly"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Weekly" />

            <RadioButton
                android:id="@+id/add_reminder_yearly"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Yearly" />
        </LinearLayout>
    </RadioGroup>

答案 2 :(得分:-2)

使用此代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:orientation="horizontal" >

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

    <LinearLayout
        android:layout_width="@dimen/zero"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center_horizontal"
        android:orientation="vertical" >

        <RadioButton
            android:id="@+id/add_reminder_daily"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="true"
            android:text="daily" />

        <RadioButton
            android:id="@+id/add_reminder_weekly"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="weekly" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="@dimen/zero"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center_horizontal"
        android:orientation="vertical" >

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

        <RadioButton
            android:id="@+id/add_reminder_yearly"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="yearly" />
    </LinearLayout>
</RadioGroup>

</LinearLayout>

enter image description here