方法1:
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="hello_world" />
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello_world2" />
hello_world2的宽度会挤压hello_world的空间。
效果图:
方法2:设置LinearLayout属性
android:gravity="right"
注:只有在LinearLayout的layout_width="match_parent"才有效。
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="right"
android:orientation="horizontal">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello_world" />
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello_world2" />
效果图:
原文:http://www.cnblogs.com/ryq2014/p/5180214.html