RelativeLayout(相對佈局)

来源:http://www.cnblogs.com/rocking7189/archive/2016/07/18/5682626.html
-Advertisement-
Play Games

相對佈局由其名稱大致可以猜測其是相對於其他的控制項進行佈局的。因此呢!其屬性也就比較多了,不過基本上都是有跡可循的。下麵就其屬性值的特點可以將一些常用的屬性分為以下三個類別。 1. 屬性值為true或false(相對於父控制項的位置) android:layout_centerHrizontal 水平居 ...


相對佈局由其名稱大致可以猜測其是相對於其他的控制項進行佈局的。因此呢!其屬性也就比較多了,不過基本上都是有跡可循的。下麵就其屬性值的特點可以將一些常用的屬性分為以下三個類別。

 

1. 屬性值為truefalse(相對於父控制項的位置)

android:layout_centerHrizontal

水平居中

android:layout_centerVertical

垂直居中

android:layout_centerInparent

相對於父元素完全居中

android:layout_alignParentBottom

貼緊父元素的下邊緣

android:layout_alignParentLeft

貼緊父元素的左邊緣

android:layout_alignParentRight

貼緊父元素的右邊緣

android:layout_alignParentTop

貼緊父元素的上邊緣

android:layout_alignWithParentIfMissing

如果對應的兄弟元素找不到的話就以父元素做參照物

 

2. 屬性值必須為id的引用名"@id/id_name"

android:layout_below

在某元素的下方

android:layout_above

在某元素的的上方

android:layout_toLeftOf

在某元素的左邊

android:layout_toRightOf

在某元素的右邊

android:layout_alignTop

本元素的上邊緣和某元素的上邊緣對齊

android:layout_alignLeft

本元素的左邊緣和某元素的左邊緣對齊

android:layout_alignBottom

本元素的下邊緣和某元素的下邊緣對齊

android:layout_alignRight

本元素的右邊緣和某元素的右邊緣對齊

 

3. 屬性值為具體的像素值

android:layout_marginBottom

本元素底邊緣離某元素的距離

android:layout_marginLeft

本元素左邊緣離某元素的距離

android:layout_marginRight

本元素右邊緣離某元素的距離

android:layout_marginTop

本元素上邊緣離某元素的距離

 

當然,除了這些個屬性,像之前在LinearLayout中用到的android:backgroundandroid:gravityandroid:layout_gravity等等屬性該佈局也都有用到。同樣的,還是通過代碼來加深對一些屬性的認識

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativeLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#acdefb">

    <Button
        android:id="@+id/tv0"
        android:layout_width="80dp"
        android:layout_height="wrap_content"
        android:background="#FF0000"
        android:layout_centerInParent="true"
        android:textSize="24sp"
        android:maxLines="2"
        android:text="中間相對組件"/>

    <Button
        android:id="@+id/tv1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#012345"
        android:layout_above="@+id/tv0"
        android:layout_toLeftOf="@+id/tv0"
        android:layout_alignParentLeft="true"
        android:layout_marginRight="30dp"
        android:layout_marginBottom="30dp"
        android:text="隱約雷鳴,陰霾天空"/>

    <Button
        android:id="@+id/tv2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#465892"
        android:layout_above="@+id/tv0"
        android:layout_toRightOf="@+id/tv0"
        android:layout_alignParentRight="true"
        android:layout_marginLeft="30dp"
        android:layout_marginBottom="30dp"
        android:text="但盼風雨來,能留君在此"/>

    <Button
        android:id="@+id/tv3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#458698"
        android:layout_below="@+id/tv0"
        android:layout_toLeftOf="@+id/tv0"
        android:layout_alignParentLeft="true"
        android:layout_marginRight="30dp"
        android:layout_marginTop="30dp"
        android:text="隱約雷鳴,陰霾天空"/>

    <Button
        android:id="@+id/tv4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#864745"
        android:layout_below="@+id/tv0"
        android:layout_toRightOf="@+id/tv0"
        android:layout_alignParentRight="true"
        android:layout_marginLeft="30dp"
        android:layout_marginTop="30dp"
        android:text="即使天無雨,我亦留此地"/>

</RelativeLayout>

 

在上述代碼中,首先創建一個Button組件tv0,處於父控制項的中間的位置。然後使其他的四個Button相對於tv0的位置來設置其位置。具體為:左上角的tv1,將其設置為處於中間tv0的上邊和左邊,且距離其左邊和上邊30dp,以及貼緊父控制項的左邊緣;右上角的tv2,將其設置為處於中間tv0的上邊和右邊,且距離其右邊和上邊30dp,以及貼緊父控制項的右邊緣;左下角的tv3,將其設置為處於中間tv0的下邊和左邊,且距離其左邊和下邊30dp,以及貼緊父控制項的左邊緣;右下角的tv4,將其設置為處於中間tv0的下邊和右邊,且距離右邊和下邊30dp,以及貼緊父控制項的右邊緣。

 

RelativeLayout的疊加效果,如果不指定每個組件的相對位置,那麼就會都疊加在左上角,有點類似於FrameLayout的疊加效果。當然,一般是指定:android:layout_marginTop、android:layout_marginBottom、    android:layout_marginLeft、android:layout_marginRight四個屬性的屬性值為負值來實現。依然是用代碼來檢測其疊加效果:

主要是講上述五個組件的寬度和高度改為200dp,然後將上述四個屬性的屬性值改為負值

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativeLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#acdefb">

    <Button
        android:id="@+id/tv0"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:background="#FF0000"
        android:layout_centerInParent="true"
        android:textSize="24sp"
        android:maxLines="2"
        android:text="中間相對組件"/>

    <Button
        android:id="@+id/tv1"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:background="#012345"
        android:layout_above="@+id/tv0"
        android:layout_toLeftOf="@+id/tv0"
        android:layout_alignParentLeft="true"
        android:layout_marginRight="-50dp"
        android:layout_marginBottom="-50dp"
        android:text="隱約雷鳴,陰霾天空"/>

    <Button
        android:id="@+id/tv2"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:background="#465892"
        android:layout_above="@+id/tv0"
        android:layout_toRightOf="@+id/tv0"
        android:layout_alignParentRight="true"
        android:layout_marginLeft="-120dp"
        android:layout_marginBottom="-50dp"
        android:text="但盼風雨來,能留君在此"/>

    <Button
        android:id="@+id/tv3"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:background="#458698"
        android:layout_below="@+id/tv0"
        android:layout_toLeftOf="@+id/tv0"
        android:layout_alignParentLeft="true"
        android:layout_marginRight="-120dp"
        android:layout_marginTop="-50dp"
        android:text="隱約雷鳴,陰霾天空"/>

    <Button
        android:id="@+id/tv4"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:background="#864745"
        android:layout_below="@+id/tv0"
        android:layout_toRightOf="@+id/tv0"
        android:layout_alignParentRight="true"
        android:layout_marginLeft="-50dp"
        android:layout_marginTop="-50dp"
        android:text="即使天無雨,我亦留此地"/>

</RelativeLayout>

 

可以看到其疊加效果如上圖所示:

只能是相對處在後面定義的組件疊加在前面的組件上,而不能是相對於前面的組件疊加在後邊的組件上。此處的相對前後表示的是後一個組件的位置是相對前面的組件位置而定的

 

其次:要用來做後邊組件相對的組件應該在前邊進行定義,以免找不到組件造成錯誤


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 水平居中 若為行內元素,對其父元素用text-align:center即可; 若為塊元素(無浮動),則一般有兩種方法可實現對其的水平居中,一為margin:0 auto;二為通過css計算函數calc; 垂直居中 若為行內元素,一般對其父元素用line-height:{height}即可,若為圖片元 ...
  • 第0章 關於本書 1, 本書要用到一個工具函數————$$(),它可以讓我們更容易獲取和遍歷所有匹配特定css選擇符的dom元素: 2, 以下實現一個效果: 3, 檢查屬性是否存在: 檢測多個屬性: 檢測某個具體的屬性值是否支持: 第1章 前言 1, 不用-ms-border-radius和-o-b ...
  • 路由 通常HTTP URL的格式是這樣的: http://host[:port][path] http表示協議。 host表示主機。 port為埠,可選欄位,不提供時預設為80。 path指定請求資源的URI(Uniform Resource Identifier,統一資源定位符),如果URL中沒 ...
  • 寫在開篇: 浮動屬性的設計初衷,只是為了實現文本環繞效果! 時刻牢記這一點,才能正確使用浮動。 浮動元素的特征: 1.浮動元素脫離文檔流。 2.浮動元素周圍的外邊距不會合併。 3.浮動元素具有包裹性。 4.浮動元素具有破壞性。 下麵這段代碼,能夠驗證上述的四個特征,按提示操作即可。 1 <!DOCT ...
  • 一,代碼。 二,輸出。 ...
  • iOS學習(C語言)知識點整理 一、整型數組 1)概念:一組類型相同,空間連續分佈的數據。 2)int a[10] int 型裡面有10個元素,數組的名字叫a, a還是數組的首地址 。 3)引用數組中的元素 a[i]:數組名+下標,下標從0開始 。 4)數組元素個數剛好與數組長度相當叫完全初始化。 ...
  • 1.效果圖 2.創建頁面文件(main.xml) 1 <Spinner 2 android:id="@+id/spinner1" 3 android:layout_width="match_parent" 4 android:layout_height="wrap_content" /> 5 6 < ...
  • 04
    04 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...