2

在我的应用程序中,我有一个对话框,其中包含一个带有四个单选按钮的单选组。我的问题是它在模拟器中看起来不错,但是当我在手机中安装和运行我的应用程序时,单选按钮在每个单选按钮之间获得了更多空间。这使得无线电组延伸到我的对话框之外。请帮我解决一下这个。谢谢你。

<RadioGroup
        android:id="@+id/radio_RemindAtDlg"
        android:layout_width="wrap_content"
        android:layout_height="130dp"
        android:layout_marginTop="110dp"
        android:layout_marginLeft="20dp" >

        <RadioButton
            android:id="@+id/radio_OnceDlg"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Once"
            android:button="@drawable/radio_button"
            android:textSize="12dp" />

        <RadioButton
            android:id="@+id/radio_WeekDlg"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Every Week"
            android:button="@drawable/radio_button"
            android:textSize="12dp" />

        <RadioButton
            android:id="@+id/radio_MonthDlg"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Every Month"
            android:button="@drawable/radio_button"
            android:textSize="12dp" />

        <RadioButton
            android:id="@+id/radio_YearDlg"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Every Year"
            android:button="@drawable/radio_button"
            android:textSize="12dp" />

    </RadioGroup>
4

2 回答 2

1

使用您自己的尺寸、形状和组件之间的空间定义您自己的单选按钮:

http://blog.dev mind.com/posts/custom-android-radiobutton

另一个例子

https://stackoverflow.com/a/17693303/1276374

于 2013-08-02T13:09:10.230 回答
0

没有很难说的代码,但我猜您将 xml height 属性设置为fill_parent而不是wrap_content

于 2013-08-02T13:06:05.040 回答