<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:text="居中按键"
android:id="@+id/btCenter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="上边"
android:layout_above="@id/btCenter"
android:layout_alignLeft="@id/btCenter"
android:layout_alignRight="@id/btCenter"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="下边"
android:layout_below="@id/btCenter"
android:layout_alignLeft="@id/btCenter"
android:layout_alignRight="@id/btCenter"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignTop="@id/btCenter"
android:layout_toLeftOf="@id/btCenter"
android:text="左边"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignTop="@id/btCenter"
android:layout_toRightOf="@id/btCenter"
android:text="右边"/>
</RelativeLayout>
安卓中的相对布局
最新推荐文章于 2024-08-28 04:17:14 发布