[android]如何使LinearLayout布局从右向左水平排列,而不是从左向右排列

方法1:

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

    <TextView
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="hello_world" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="hello_world2" />
</LinearLayout>

hello_world2的宽度会挤压hello_world的空间。

效果图:

方法2:设置LinearLayout属性

android:gravity="right"

 注:只有在LinearLayout的layout_width="match_parent"才有效。

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

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="hello_world" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="hello_world2" />
</LinearLayout>
  

效果图:

你可能感兴趣的:([android]如何使LinearLayout布局从右向左水平排列,而不是从左向右排列)