标签:android开发 布局 relativelayout 移动端开发 游响云停工作室
可以设置控件与父控件的位置,控件与控件之间的位置。
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>
.Net程序员玩转Android开发---(7)相对布局RelativeLayout
标签:android开发 布局 relativelayout 移动端开发 游响云停工作室
原文地址:http://blog.csdn.net/zx13525079024/article/details/40857433