Android单选按钮文本(左对齐)

时间:2011-03-31 23:51:57

标签: android button radio

我有一些单选按钮(垂直和水平方向)我希望文本jusify android:text =“1”,android:text =“2”,android:text =“3”,和android: text =“4”左侧相应的单选按钮(单选按钮旁边)。我无法找到设置LinearLayout来实现此目的的解决方案。任何帮助,将不胜感激。我的xml文件是:

<LinearLayout
   xmlns:android="http://schemas.android.com/apk/res/android"
   android:orientation="vertical"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   <RadioGroup
      android:id="@+id/Group01"
      android:layout_weight="1"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:orientation="horizontal">
      <RadioButton
         android:id="@+id/rb01"
         android:layout_width="50dp"
         android:layout_height="15pt"
         android:checked="true"
         android:text="1" />
      <RadioButton
         android:id="@+id/rb02"
         android:layout_width="50dp"
         android:layout_height="15pt"
         android:checked="true"
         android:text="2" />
   </RadioGroup>
   <RadioGroup
      android:id="@+id/Group02"
      android:layout_weight="1"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:orientation="horizontal">
      <RadioButton
         android:id="@+id/rb03"
         android:layout_width="50dp"
         android:layout_height="15pt"
         android:checked="true"
         android:text="3" />
      <RadioButton
         android:id="@+id/rb04"
         android:layout_width="50dp"
         android:layout_height="15pt"
         android:checked="true"
         android:text="4" />
   </RadioGroup>
</LinearLayout>

2 个答案:

答案 0 :(得分:0)

不幸的是,我发现没有简单的方法可以做你想做的事。但是一些老式的编程可以非常好地解决。

看看我对this question的回答。希望它有所帮助!

答案 1 :(得分:0)

这个问题的接受答案Text leftside of a RadioButton with a margin on Android我相信你正在寻找的东西。