欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android布局之RelativeLayout相對布局

 更新時間:2015年12月31日 10:09:59   投稿:mrr  
RelativeLayout是相對布局控件:以控件之間相對位置或相對父容器位置進(jìn)行排列,下面通過本文給大家介紹Android布局之RelativeLayout相對布局,涉及到android relativelayout相對布局相關(guān)知識,對android relativelayout相對布局相關(guān)知識,感興趣的朋友一起學(xué)習(xí)吧

RelativeLayout是相對布局控件:以控件之間相對位置或相對父容器位置進(jìn)行排列。

相對布局常用屬性:

子類控件相對子類控件:值是另外一個控件的id

android:layout_above----------位于給定DI控件之上
android:layout_below ----------位于給定DI控件之下 
android:layout_toLeftOf -------位于給定控件左邊
android:layout_toRightOf ------位于給定控件右邊
 android:layout_alignLeft -------左邊與給定ID控件的左邊對齊
 android:layout_alignRight ------右邊與給定ID控件的右邊對齊
android:layout_alignTop -------上邊與給定ID控件的上邊對齊
android:layout_alignBottom ----底邊與給定ID控件的底邊對齊
android:layout_alignBaseline----對齊到控件基準(zhǔn)線

學(xué)習(xí)導(dǎo)圖如下所示:

注:父容器定位的屬性值只能是Boolean ,兄弟組件定位的屬性值只能是ID

 典型案例(梅花)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"               
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  <ImageView
    android:id="@+id/img1"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_centerInParent="true"
    android:src="@mipmap/ic_launcher"/>
  <ImageView
    android:id="@+id/img2"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_above="@id/img1"
    android:layout_centerHorizontal="true"
    android:src="@mipmap/ic_launcher"/>
  <ImageView
    android:id="@+id/img3"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_below="@id/img1"
    android:layout_centerHorizontal="true"
    android:src="@mipmap/ic_launcher"/>
  <ImageView
    android:id="@+id/img4"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_toLeftOf="@id/img1"
    android:layout_centerVertical="true"
    android:src="@mipmap/ic_launcher"/>
  <ImageView
    android:id="@+id/img5"
    android:layout_width="150dp"
    android:layout_height="150dp"
    android:layout_toRightOf="@id/img1"
    android:layout_centerVertical="true"
    android:src="@mipmap/ic_launcher"/>
</RelativeLayout>

以上內(nèi)容是小編給大家介紹的Android布局之RelativeLayout相對布局相關(guān)知識,希望大家喜歡。

相關(guān)文章

最新評論