码迷,mamicode.com
首页 > 其他好文 > 详细

相对布局(上)

时间:2014-06-27 20:28:50      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:des   android   cWeb   style   class   blog   

1. 什么是相对布局(RelativeLayout)

2. 为什么要相对布局

3. 相对布局的两组常用属性

 

1. 什么是相对布局(RelativeLayout)

    bubuko.com,布布扣

2. 为什么要相对布局

     安卓布局中嵌套会消耗更多资源!!!

3. 相对布局的两组常用属性

    bubuko.com,布布扣

        bubuko.com,布布扣

       代码如下:

 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:tools="http://schemas.android.com/tools"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     tools:context="first.pack.MainActivity$PlaceholderFragment" >
 6 
 7     <TextView
 8         android:id="@+id/firstView"   //创建id
 9         android:layout_width="wrap_content"
10         android:layout_height="wrap_content"
11         android:background="#FF0000"
12         android:text="hello_world" />
13     
14     <TextView
15         android:layout_width="wrap_content"
16         android:layout_height="wrap_content"
17         android:layout_toRightOf="@+id/firstView"   //根据id判断相对位置
18         android:background="#00FF00"
19         android:text="hello_mirror" />
20 
21 </RelativeLayout>

             bubuko.com,布布扣

相对布局(上),布布扣,bubuko.com

相对布局(上)

标签:des   android   cWeb   style   class   blog   

原文地址:http://www.cnblogs.com/iMirror/p/3809639.html

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