Android學習筆記08:相對布局RelativeLayout

來源:互聯網
上載者:User

  RelativeLayout是實際布局中最常用的布局方式之一。RelativeLayout可以設定某一個視圖相對於其他視圖的位置,這些位置可以包括上下左右等,因而相較於其他的布局方式而言具有很大的靈活性。

  RelativeLayout的常用屬性有以下一些:

  第一類:屬性值為true或false
  android:layout_centerHrizontal 水平置中
  android:layout_centerVertical 垂直置中
  android:layout_centerInparent 相對於父元素完全置中
  android:layout_alignParentBottom 貼緊父元素的下邊緣
  android:layout_alignParentLeft 貼緊父元素的左邊緣
  android:layout_alignParentRight 貼緊父元素的右邊緣
  android:layout_alignParentTop 貼緊父元素的上邊緣
  android:layout_alignWithParentIfMissing 如果對應的兄弟元素找不到的話就以父元素做參照物

  第二類:屬性值必須為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 本元素的右邊緣和某元素的的右邊緣對齊

  第三類:屬性值為具體的像素值
  android:layout_marginBottom 離某元素底邊緣的距離
  android:layout_marginLeft 離某元素左邊緣的距離
  android:layout_marginRight 離某元素右邊緣的距離
  android:layout_marginTop 離某元素上邊緣的距離

  下面是一個使用相對布局的執行個體。activity_main.xml源碼如下:

Android_RelativeLayout執行個體

 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      6     <!-- 置中的按鈕:參照物 --> 7     <Button 8         android:id="@+id/mButton_center" 9         android:text="@string/center"10         android:layout_centerHorizontal="true"11         android:layout_centerVertical="true"12         android:layout_width="90dp"13         android:layout_height="wrap_content"    >        14     </Button>15     16     <!-- 上 -->17     <Button18         android:id="@+id/mButton_above"19         android:text="@string/above"20         android:layout_above="@id/mButton_center"21         android:layout_centerHorizontal="true"22         android:layout_width="90dp"23         android:layout_height="wrap_content"    >        24     </Button>25     26     <!-- 下 -->27     <Button28         android:id="@+id/mButton_below"29         android:text="@string/below"30         android:layout_below="@id/mButton_center"31         android:layout_centerHorizontal="true"32         android:layout_width="90dp"33         android:layout_height="wrap_content"    >        34     </Button>35     36     <!-- 左 -->37     <Button38         android:id="@+id/mButton_left"39         android:text="@string/left"40         android:layout_toLeftOf="@id/mButton_center"41         android:layout_centerVertical ="true"42         android:layout_width="120dp"43         android:layout_height="wrap_content"    >        44     </Button>45     46     <!-- 右 -->47     <Button48         android:id="@+id/mButton_right"49         android:text="@string/right"50         android:layout_toRightOf="@id/mButton_center"51         android:layout_centerVertical ="true"52         android:layout_width="120dp"53         android:layout_height="wrap_content"    >        54     </Button>    55     56     <!-- 左上 -->57     <Button58         android:id="@+id/mButton_aboveAndleft"59         android:text="@string/aboveAndleft"60         android:layout_above="@id/mButton_center"61         android:layout_toLeftOf="@id/mButton_above"62         android:layout_width="120dp"63         android:layout_height="wrap_content"    >        64     </Button>65     66     <!-- 右上 -->67     <Button68         android:id="@+id/mButton_aboveAndright"69         android:text="@string/aboveAndright"70         android:layout_above="@id/mButton_center"71         android:layout_toRightOf="@id/mButton_above"72         android:layout_width="120dp"73         android:layout_height="wrap_content"    >        74     </Button>75     76     <!-- 左下 -->77     <Button78         android:id="@+id/mButton_belowAndleft"79         android:text="@string/belowAndleft"80         android:layout_below="@id/mButton_center"81         android:layout_toLeftOf="@id/mButton_below"82         android:layout_width="120dp"83         android:layout_height="wrap_content"    >        84     </Button>            85     86     <!-- 右下 -->87     <Button88         android:id="@+id/mButton_belowAndright"89         android:text="@string/belowAndright"90         android:layout_below="@id/mButton_center"91         android:layout_toRightOf="@id/mButton_below"92         android:layout_width="120dp"93         android:layout_height="wrap_content"    >        94     </Button>95 </RelativeLayout>

  1所示:

圖1:Android_RelativeLayout執行個體

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.