Android相對布局代碼可以通過以下步驟來編寫:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:layout_marginTop="16dp"
android:layout_alignParentTop="true"
/>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:layout_below="@id/textView1"
android:layout_centerHorizontal="true"
/>
在上述代碼中,textView1
的頂部與父布局頂部對齊,并且添加了16dp的頂部邊距;button1
位于textView1
的下方,并且水平居中對齊。
</RelativeLayout>
以上就是一個簡單的相對布局代碼的例子。根據需要,你可以添加更多的子視圖,并根據相對布局的規則進行定位。