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

相对布局(中)

时间:2014-06-27 14:49:11      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:des   android   cWeb   style   class   blog   

1. 对齐至控件的基准线

2. 与父控件的四个边缘对齐

3. 对齐至父控件的中央

 

1. 对齐至控件的基准线

    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"
 9         android:layout_width="wrap_content"
10         android:layout_height="wrap_content"
11         android:textSize="50sp"
12         android:background="#FF0000"
13         android:text="hello" />
14     
15     <TextView
16         android:layout_width="wrap_content"
17         android:layout_height="wrap_content"
18         android:layout_toRightOf="@+id/firstView"
19         android:layout_alignBaseline="@+id/firstView"  //对齐基准线!!!
20         android:background="#00FF00"
21         android:text="mirrorhanyu" />
22 
23 </RelativeLayout>

 

2. 与父控件的四个边缘对齐

       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"
 9         android:layout_width="wrap_content"
10         android:layout_height="wrap_content"
11         android:textSize="50sp"
12         android:background="#FF0000"
13         android:layout_alignParentRight="true"   //与父控件右边对齐
14         android:text="hello" />  
15 
16 </RelativeLayout>

     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     <RelativeLayout    
 8         android:layout_width="wrap_content"
 9         android:layout_height="300dp"
10         android:background="#00FF00">
11         <TextView
12             android:id="@+id/firstView"
13             android:layout_width="wrap_content"
14             android:layout_height="wrap_content"
15             android:textSize="50sp"
16             android:background="#FF0000"
17             android:layout_alignParentRight="true"   //与就近的父控件对齐
18             android:layout_alignParentBottom="true"
19             android:text="hello" />  
20     </RelativeLayout>
21 </RelativeLayout>

       bubuko.com,布布扣 

 

      

3. 对齐至父控件的中央

           bubuko.com,布布扣

 

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

相对布局(中)

标签:des   android   cWeb   style   class   blog   

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

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