Мне было интересно, как можно выровнять два или более элемента пользовательского интерфейса в нижней части экрана, вместо того чтобы они просто складывались, как обычно.
Примерно так:
<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>