Android中的RelativeLyout布局

相对布局中的视图组件是按相互之间的相对位置来确定的,并不是线性布局中的必须按行或按列单个显示

在string.xml中内容


Hello World, UIActivity!
用户界面
请输入用户名
确定
取消

在main.xml中的内容


android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

android:id="@+id/name_info"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/name_text" />

android:id="@+id/username"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/name_info" />

android:id="@+id/cancel_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/username"
android:text="@string/cancel_text" />

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@id/cancel_button"
android:layout_toLeftOf="@id/cancel_button"
android:text="@string/ok_text" />

显示结果:

你可能感兴趣的:(Android中的RelativeLyout布局)