设置组件a在组件b的左边,其赋值为组件b的id。下列代码表示view_3放在view_4的左侧。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:padding="10dp">
<View
android:id="@+id/view_3"
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#CD00"
/>
?
<View
android:id="@+id/view_4"
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#CD00"
android:layout_toRightOf="@id/view_3"
android:layout_marginLeft="10dp"
/>
组件a在组件b的右侧,使用方法与上一致。
组件a关于组件b底部对其。
组件a关于父容器底部对齐。
组件a在组件b的下方
例:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
?
<View
android:id="@+id/view_1"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#000000"
?
/>
<View
android:id="@+id/view_2"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#0000F0"
android:layout_below="@+id/view_1"
/>
<LinearLayout
android:id="@+id/layout_1"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_below="@+id/view_2"
android:background="#FF00FF"
android:padding="15dp"
android:orientation="horizontal">
?
<View
android:layout_width="100dp"
android:layout_height="100dp"
android:background="#FCD0"
/>
?
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:padding="10dp">
<View
android:id="@+id/view_3"
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#CD00"
/>
?
<View
android:id="@+id/view_4"
android:layout_width="100dp"
android:layout_height="match_parent"
android:background="#CD00"
android:layout_toRightOf="@id/view_3"
android:layout_marginLeft="10dp"
/>
?
</RelativeLayout>
</LinearLayout>
?
?
</RelativeLayout>
原文:https://www.cnblogs.com/xiaoxiongaixuexi/p/14368751.html