【发布时间】:2011-04-17 04:49:52
【问题描述】:
我想知道如何将两个或多个 UI 元素对齐到屏幕底部,而不是像往常那样堆叠。
【问题讨论】:
标签: android user-interface elements alignment
我想知道如何将两个或多个 UI 元素对齐到屏幕底部,而不是像往常那样堆叠。
【问题讨论】:
标签: android user-interface elements alignment
类似这样的:
<RelativeLayout
android:id="@+id/myBottomLayout"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentBottom="true">
<View
android:id="@+id/leftItem"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
<View
android:id="@+id/rightItem"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_toRightOf="id/leftItem">
</RelativeLayout>
【讨论】: