相对布局RelativeLayout是Android布局中一个比较常用的控件,使用该控件可以布局出适合各种屏幕分辨率的布局,RelativeLayout采用相对位置进行控件属性设置.
可以设置控件与父控件的位置,控件与控件之间的位置。
1. 控件与父容器位置属性
android:layout_alignParentLeft="true" 子控件相对于父容器靠左边
android:layout_alignParentTop="true"
子控件相对于父容器靠 上边
android:layout_marginTop="50dp"
子控件与父容器上边距距离
android:layout_marginBottom="50dp"
子控件与父容器下边距距离
android:layout_marginRight="50dp"
子控件与父容器右边距距离
android:layout_marginLeft="50dp"
子控件与父容器左边距距离
android:layout_centerInParent="true"//子控件在父容器中居中显示
android:layout_centerHorizontal="true" //子控件在父容器中水平居中
android:layout_centerVertical="true" 子控件在父容器中垂直居中
下面的示例展示下相对于父容器的布局
<?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" > <TextView android:id="@+id/textView1" android:layout_width="match_parent" android:layout_height="match_parent" android:text="相对父容易布局" android:background="#97FFFF" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:layout_marginTop="50dp" android:layout_marginBottom="50dp" android:layout_marginRight="50dp" /> </RelativeLayout>
2.控件与控件间位置属性
3.商品列表示例
时间: 2024-11-02 12:12:22