阅读量:1
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>
以上就是一个简单的相对布局代码的例子。根据需要,你可以添加更多的子视图,并根据相对布局的规则进行定位。