如何使用RelativeLayout布局

本篇文章給大家分享的是有關(guān)如何使用RelativeLayout布局,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

創(chuàng)新互聯(lián),專注為中小企業(yè)提供官網(wǎng)建設(shè)、營銷型網(wǎng)站制作、自適應(yīng)網(wǎng)站建設(shè)、展示型網(wǎng)站設(shè)計、成都網(wǎng)站制作等服務(wù),幫助中小企業(yè)通過網(wǎng)站體現(xiàn)價值、有效益。幫助企業(yè)快速建站、解決網(wǎng)站建設(shè)與網(wǎng)站營銷推廣問題。

核心屬性圖

如何使用RelativeLayout布局

2.父容器定位屬性示意圖

如何使用RelativeLayout布局

3.根據(jù)兄弟組件定位

恩,先說下什么是兄弟組件吧,所謂的兄弟組件就是處于同一層次容器的組件,如圖

如何使用RelativeLayout布局

圖中的組件1,2就是兄弟組件了,而組件3與組件1或組件2并不是兄弟組件,所以組件3不能通過組件1或2來進行定位,比如layout_toleftof = "組件1"這樣是會報錯的!切記!關(guān)于這個兄弟組件定位的最經(jīng)典例子就是"梅花布局"了,下面代碼實現(xiàn)下:

運行效果圖:

如何使用RelativeLayout布局

實現(xiàn)代碼:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  xmlns:tools="http://schemas.android.com/tools"  
  android:id="@+id/RelativeLayout1"  
  android:layout_width="match_parent"  
  android:layout_height="match_parent" >  
  
  <!-- 這個是在容器中央的 -->  
    
  <ImageView  
    android:id="@+id/img1"   
    android:layout_width="80dp"  
    android:layout_height="80dp"  
    android:layout_centerInParent="true"  
    android:src="@drawable/pic1"/>  
    
  <!-- 在中間圖片的左邊 -->  
  <ImageView  
    android:id="@+id/img2"   
    android:layout_width="80dp"  
    android:layout_height="80dp"  
    android:layout_toLeftOf="@id/img1"  
    android:layout_centerVertical="true"  
    android:src="@drawable/pic2"/>  
    
  <!-- 在中間圖片的右邊 -->  
  <ImageView  
    android:id="@+id/img3"   
    android:layout_width="80dp"  
    android:layout_height="80dp"  
    android:layout_toRightOf="@id/img1"  
    android:layout_centerVertical="true"  
    android:src="@drawable/pic3"/>  
    
  <!-- 在中間圖片的上面-->  
  <ImageView  
    android:id="@+id/img4"   
    android:layout_width="80dp"  
    android:layout_height="80dp"  
    android:layout_above="@id/img1"  
    android:layout_centerHorizontal="true"  
    android:src="@drawable/pic4"/>  
    
  <!-- 在中間圖片的下面 -->  
  <ImageView  
    android:id="@+id/img5"   
    android:layout_width="80dp"  
    android:layout_height="80dp"  
    android:layout_below="@id/img1"  
    android:layout_centerHorizontal="true"  
    android:src="@drawable/pic5"/>  
  
</RelativeLayout>

4.margin與padding的區(qū)別

初學(xué)者對于這兩個屬性可能會有一點混淆,這里區(qū)分下:首先margin代表的是偏移,比如marginleft = "5dp"表示組件離容器左邊緣偏移5dp; 而padding代表的則是填充,而填充的對象針對的是組件中的元素,比如TextView中的文字比如為TextView設(shè)置paddingleft = "5dp",則是在組件里的元素的左邊填充5dp的空間! margin針對的是容器中的組件,而padding針對的是組件中的元素,要區(qū)分開來!下面通過簡單的代碼演示兩者的區(qū)別:

比較示例代碼如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  xmlns:tools="http://schemas.android.com/tools"  
  android:layout_width="match_parent"  
  android:layout_height="match_parent"  
  android:paddingBottom="@dimen/activity_vertical_margin"  
  android:paddingLeft="@dimen/activity_horizontal_margin"  
  android:paddingRight="@dimen/activity_horizontal_margin"  
  android:paddingTop="@dimen/activity_vertical_margin"  
  tools:context=".MainActivity" >  
  
  <Button  
    android:id="@+id/btn1"   
    android:layout_height="wrap_content"  
    android:layout_width="wrap_content"  
    android:text="Button"/>  
  <Button  
    android:paddingLeft="100dp"   
    android:layout_height="wrap_content"  
    android:layout_width="wrap_content"  
    android:text="Button"  
    android:layout_toRightOf="@id/btn1"/>  
    
  <Button  
    android:id="@+id/btn2"   
    android:layout_height="wrap_content"  
    android:layout_width="wrap_content"  
    android:text="Button"  
    android:layout_alignParentBottom="true"/>  
  <Button  
    android:layout_marginLeft="100dp"   
    android:layout_height="wrap_content"  
    android:layout_width="wrap_content"  
    android:text="Button"  
    android:layout_toRightOf="@id/btn2"   
    android:layout_alignParentBottom="true"/>  
    
</RelativeLayout>

運行效果圖比較:

如何使用RelativeLayout布局

5.很常用的一點:margin可以設(shè)置為負數(shù)

相信很多朋友都不知道一點吧,平時我們設(shè)置margin的時候都習(xí)慣了是正數(shù)的, 其實是可以用負數(shù)的,下面寫個簡單的程序演示下吧,模擬進入軟件后,彈出廣告頁面的,右上角的cancle按鈕的margin則是使用負數(shù)的!

效果圖如下:

如何使用RelativeLayout布局

貼出的廣告Activity的布局代碼吧,當(dāng)然,如果你對這個有興趣的話可以下下demo, 因為僅僅是實現(xiàn)效果,所以代碼會有些粗糙!

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:tools="http://schemas.android.com/tools" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  tools:context="com.jay.example.relativelayoutdemo.MainActivity"  
  android:background="#00CCCCFF"> 
 
  <ImageView 
    android:id="@+id/imgBack" 
    android:layout_width="200dp" 
    android:layout_height="200dp" 
    android:layout_centerInParent="true" 
    android:background="@drawable/myicon" /> 
 
  <ImageView 
    android:id="@+id/imgCancle" 
    android:layout_width="28dp" 
    android:layout_height="28dp" 
    android:layout_alignRight="@id/imgBack" 
    android:layout_alignTop="@id/imgBack" 
    android:background="@drawable/cancel" 
    android:layout_marginTop="-15dp" 
    android:layout_marginRight="-10dp" /> 
 
</RelativeLayout>

以上就是如何使用RelativeLayout布局,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

本文名稱:如何使用RelativeLayout布局
本文路徑:http://bm7419.com/article16/gosgdg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、網(wǎng)站設(shè)計公司、標(biāo)簽優(yōu)化、網(wǎng)站導(dǎo)航、網(wǎng)頁設(shè)計公司

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

營銷型網(wǎng)站建設(shè)