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


如何使LinearLayout布局水平方向从右向左排列,而不是从左向右排列,我想让右边的控件大小变化时挤压左边的控件,可是水平方向从左向右排列的话,右边控件大小变化时左边不变

Android

Treow 12 years, 9 months ago

通过设置左边控件的属性即可,代码如下:

   
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  
xmlns:tools="http://schemas.android.com/tools"
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的空间。

四叶草场主 answered 12 years, 9 months ago

Your Answer