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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[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布局从右向左水平排列,而不是从左向右排列的主要内容,如果未能解决你的问题,请参考以下文章

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

android页面布局:如何使LinearLayout层占满页面,但不覆盖底部菜单栏?

android页面布局:如何使LinearLayout层占满页面,但不覆盖底部菜单栏?

如何使 wrap_content 文本视图包装其内容仅足以使其他视图在 LinearLayout android 中可见?

Android:LinearLayout 内的 CardView 使应用程序崩溃

Android:如何将 LinearLayout 的内容垂直包装在 TableRow 中?