码迷,mamicode.com
首页 > 移动开发 > 详细

.Net程序员玩转Android开发---(7)相对布局RelativeLayout

时间:2014-11-06 13:10:52      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:android开发   布局   relativelayout   移动端开发   游响云停工作室   

          
             相对布局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"  子控件在父容器中垂直居中

                           下面的示例展示下相对于父容器的布局

                             bubuko.com,布布扣

                       

<?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.商品列表示例



.Net程序员玩转Android开发---(7)相对布局RelativeLayout

标签:android开发   布局   relativelayout   移动端开发   游响云停工作室   

原文地址:http://blog.csdn.net/zx13525079024/article/details/40857433

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!