码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2016-02-03 18:14:10      阅读:1176      评论:0      收藏:0      [点我收藏+]

标签:

方法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布局从右向左水平排列,而不是从左向右排列

标签:

原文地址:http://www.cnblogs.com/ryq2014/p/5180214.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!