Relative Layout
RelativeLayout 是
ViewGroup 的一种,它里面包含的View按照相对位置进行排列,可以指定一个View跟相邻View的位置关系(例如:在某个View的左边,或者下面);或者指定这个View相对于RelativeLayout这个容器的位置(例如底部,或者左边中间)。RelativeLayout是一个很强大的工具,在设计用户界面的时候可以消除嵌套的ViewGroup。如果你在嵌套使用LinearLayout,你应该可以用单个的RelativeLayout来取代它。
- 创建一个工程:HelloRelativeLayout
- 打开
res/layout/main.xml 并修改如下: - <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:Android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <TextView
- android:id="@+id/label"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="Type here:"/>
- <EditText
- android:id="@+id/entry"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="@android:drawable/editbox_background"
- android:layout_below="@id/label"/>
- <Button
- android:id="@+id/ok"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/entry"
- android:layout_alignParentRight="true"
- android:layout_marginLeft="10dip"
- android:text="OK" />
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_toLeftOf="@id/ok"
- android:layout_alignTop="@id/ok"
- android:text="Cancel" />
- </RelativeLayout>
关注每一个android:layout_* 属性,例如layout_below, layout_alignParentRight, 还有layout_toLeftOf。 使用RelativeLayout的时候,用这些属性来设置每个View的位置。这些属性的每一个都定义了一种相对位置。有些属性使用相邻View的资源ID来定义自己的相对位置。例如,最后一个Button,被摆放在资源ID ok (这是前一个Button)的左边,并和它上对齐。所有的布局属性都定义在 RelativeLayout.LayoutParams.
- 确保你在
onCreate() 方法装载了这个布局: - public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- }
setContentView(int) 方法装载这个Activity的布局文件,资源ID — R.layout.main 指向res/layout/main.xml布局文件。 - 运行应用。
应该能看到下面的画面:
返回 Android SDK Tutorials系列 - Hello Views