Как поставить радиопереключатель на самый правый - PullRequest
2 голосов
/ 22 апреля 2011

Я пытаюсь сделать макет сначала двумя текстовыми представлениями в вертикальном расположении, затем текстом, а затем расположить радиокнопку с самой правой стороны с линейным расположением.Однако, несмотря на то, что я набрал 'android: gravity = "right"', он не двигается и просто придерживается там.Если у кого-нибудь есть идея, не могли бы вы мне помочь?Ниже мой код.


<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="horizontal"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">
    <TwoLineListItem android:id="@+id/twoLineListItem1" android:layout_width="wrap_content" android:layout_height="wrap_content">
        <TextView android:id="@+id/textView1" 
                android:text="TextView"
                android:layout_width="wrap_content" android:layout_height="wrap_content" 
                android:textAppearance="?android:attr/textAppearanceMedium" />
        <TextView android:id="@+id/textView2" 
                android:text="TextView"
                android:layout_width="wrap_content" android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceSmall" 
                android:paddingTop="30px"/>
    </TwoLineListItem>
    <TextView android:text="TextView" 
        android:id="@+id/textView3" 
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:paddingTop="10px"/>

    <RadioButton android:id="@+id/radioButton1" 
            android:gravity="right"
            android:layout_width="fill_parent" android:layout_height="wrap_content" />
</LinearLayout>

Ответы [ 3 ]

3 голосов
/ 15 июня 2012

Радио кнопка для выравнивания по правой стороне:

<RadioButton
                    android:id="@+id/radio0"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:background="@null"
                    android:button="@null"
                    android:checked="true"
                    android:drawableRight="@drawable/presets_sel"
                    android:padding="12dp"
                    android:text="RadioButton 1" />
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/right_arrow_h" android:state_checked="true"/>
    <item android:drawable="@drawable/right_arrow_h" android:state_pressed="true"/>
    <item android:drawable="@drawable/right_arrow"></item>

</selector>
2 голосов
/ 22 апреля 2011

Вы должны сделать ширину радио-кнопки равной

android: layout_width = "wrap_content"

А Добавить

Android: layout_weight = "1"

для TwoLineListItem и TextView

0 голосов
/ 22 апреля 2011

вы используете android: layout_gravity = "right"

...