RadioButton文本对齐?

时间:2016-09-20 21:05:16

标签: java android xml android-studio radio-button

我无法在Android Studio的RadioButton的同一行上对齐文字。

这是我的......

Application Picture

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

好的尝试一下,

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:orientation="horizontal" >

    <RadioButton 
    android:id="@+id/radio_pirates"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="male"
    android:onClick="onRadioButtonClicked"/>>

    <TextView
        android:layout_width="100dp"
        android:text="besides"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:text="@string/send" />
</LinearLayout>