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

Android——Layout:RelativeLayout

时间:2015-09-28 07:42:23      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:relativelayout   android   布局   


         

相对布局是指利用控件之间的相对位置关系来对布局进行设置。

在容器中的控件与其他任何一个控件或者容器都有相对关系。



          例如:

<?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/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignRight="@+id/textView1"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="14dp"
        android:text="亲爱哒~" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="26dp"
        android:text="中秋快乐" />

    <AnalogClock
        android:id="@+id/analogClock1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView2"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="14dp" />

</RelativeLayout>

布局完成效果:


技术分享



      使用相对布局的方式主要是设置某个控件跟他周围的控件的相对位置关系:比如,它与**底部平齐,与某某控件顶部平齐,在某控件左边或者右边,在父控件中的相对位置关系。






版权声明:本文为博主原创文章,未经博主允许不得转载。

Android——Layout:RelativeLayout

标签:relativelayout   android   布局   

原文地址:http://blog.csdn.net/lhc1105/article/details/48769999

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