如何将旋转器从右到左对齐?

时间:2014-04-19 13:34:57

标签: android textview spinner right-to-left gravity

谁能告诉我,我做错了什么? :( 我有2个Spinners和两个TextView,我想对齐。 我把一切都设置得正确,但仍然保持一致。

以下是它的样子:

enter image description here

但我希望它看起来像这样:

enter image description here

这是我的XML代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" 
android:layout_gravity="right"
android:gravity="right">
    <RadioGroup
        android:id="@+id/radios"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:gravity="center_horizontal"
        android:inputType="text"
        android:onClick="test"
        android:orientation="horizontal"
        android:paddingRight="10dp" >

        <RadioButton
            android:id="@+id/rbtn_sell"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="10dp"
            android:button="@null"
            android:drawablePadding="3dp"
            android:drawableRight="@android:drawable/btn_radio"
            android:text="@string/label_sell_unicode"
            android:textSize="12sp" />

        <RadioButton
            android:id="@+id/rbtn_rent"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:button="@null"
            android:drawablePadding="3dp"
            android:drawableRight="@android:drawable/btn_radio"
            android:text="@string/label_rent_unicode"
            android:textSize="12sp" 
            android:paddingLeft="40dp"/>
    </RadioGroup>
<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:layout_gravity="center"
    android:gravity="right"
    android:orientation="horizontal"
    >

    <TextView
        android:id="@+id/textView_from"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/label_from" 
        />
    <Spinner
        android:id="@+id/spinner1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@android:drawable/btn_dropdown"
        android:gravity="right"
        android:layout_gravity="right"
        android:spinnerMode="dropdown" />
    <TextView
        android:id="@+id/textView_to"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/label_to" 
        />
    <Spinner
        android:id="@+id/spinner2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@android:drawable/btn_dropdown"
        android:gravity="right"
        android:layout_gravity="right"
        android:spinnerMode="dropdown" />



</LinearLayout>

更新:ElDuderino建议进行更改后的我的XML。在此更改后,两个TextView和两个Spinners都消失了。屏幕上没有它们。

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="2">
<RadioGroup
    android:id="@+id/radios"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="right"
    android:gravity="center_horizontal"
    android:inputType="text"
    android:onClick="test"
    android:orientation="horizontal"
    android:paddingRight="10dp" >

    <RadioButton
        android:id="@+id/rbtn_sell"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="10dp"
        android:button="@null"
        android:drawablePadding="3dp"
        android:drawableRight="@android:drawable/btn_radio"
        android:text="@string/label_sell_unicode"
        android:textSize="12sp" />

    <RadioButton
        android:id="@+id/rbtn_rent"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:button="@null"
        android:drawablePadding="3dp"
        android:drawableRight="@android:drawable/btn_radio"
        android:text="@string/label_rent_unicode"
        android:textSize="12sp" 
        android:paddingLeft="40dp"/>
</RadioGroup>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="2" >

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/textView_from"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="From" />

        <Spinner
            android:id="@+id/spinner1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:drawable/btn_dropdown"
            android:spinnerMode="dropdown" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/textView_to"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="To" />

        <Spinner
            android:id="@+id/spinner2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:drawable/btn_dropdown"
            android:spinnerMode="dropdown" />
    </LinearLayout>
</LinearLayout>
</LinearLayout>

3 个答案:

答案 0 :(得分:0)

你在radiobutton上添加drawable时犯了一个错误。试试这个并知道

机器人:drawableLeft = “@机器人:可拉伸/ btn_radio”

答案 1 :(得分:0)

原因是:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical" 
 android:layout_gravity="right"
 **android:gravity="right">**

您设置顶部布局以将所有内容对齐到右侧,因此您设置为wrap_content的内部布局不占用所有可用空间,因此可以正确对齐。因此,要么从外部布局中删除android:gravity,要么将内部布局layout_width设置为match_parent

更新,因为它不起作用:用以下内容替换你的内部线性布局:(我必须更改字符串资源,但你要弄清楚)......

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="2" >

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/textView_from"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="From" />

        <Spinner
            android:id="@+id/spinner1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:drawable/btn_dropdown"
            android:spinnerMode="dropdown" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <TextView
            android:id="@+id/textView_to"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="To" />

        <Spinner
            android:id="@+id/spinner2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:drawable/btn_dropdown"
            android:spinnerMode="dropdown" />
    </LinearLayout>
</LinearLayout>

答案 2 :(得分:0)

使用

   android:layout_toRightOf="@id/textView_from"
   android:layout_toRightOf="@id/textView_to"

这可能会对你有所帮助