方法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>
效果图:
时间: 2024-10-06 00:24:16