Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> android的布局-----RelativeLayout(相對布局),relativelayout布局

android的布局-----RelativeLayout(相對布局),relativelayout布局

編輯:關於android開發

android的布局-----RelativeLayout(相對布局),relativelayout布局


學習導圖

注:父容器定位的屬性值只能是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>

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved