在我的应用程序中,我显示了一个单选按钮组。出现在文本左侧的按钮。我希望文本位于按钮的左侧。请注意,我使用 anandroid:text="My Text"
来指定按钮的原因。
问问题
773 次
1 回答
0
<TextView android:layout_width="20dp"
android:layout_height="22dp"
android:background="@android:color/transparent"
android:textColor="#000000"
android:layout_marginLeft="2dp"
android:textSize="20dp"
android:text="text"/>
<RadioButton
android:id="@+id/rd0"
android:layout_width="20dp"
android:layout_height="20dp" />
您还可以使用 textview 放置单选按钮。但不要android:text="My Text"
用于单选按钮
于 2012-07-31T08:48:44.107 回答