zoukankan      html  css  js  c++  java
  • 安卓学习-界面-布局-RelativeLayout

    RelativeLayout相对布局,所有内部的组件都是相对的

    XML属性

    XML属性 函数 说明
    android:gravity setGravity 内部组件的对其方式
    android:ignoreGravity setIgnoreGravity 设置哪个组件不受Gravity影响

    RelativeLayout.LayoutParams用来设置内部组件的对齐方式

    XML属性 说明
    android:layout_centerHorizontal 水平居中
    android:layout_centerVertical 垂直居中
    android:layout_centerInParent 水平垂直居中
    android:layout_alignParentTop 布局上、下、左、左、右
    android:layout_alignParentBottom
    android:layout_alignParentRight
    android:layout_alignParentLeft
    android:layout_toRightOf 该组件位于指定ID的右侧
    android:layout_toLeftOf 该组件位于指定ID的左侧
    android:layout_above 该组件位于指定ID的上
    android:layout_below 该组件位于指定ID的下
    android:layout_alignTop  
    android:layout_alignLeft  
    android:layout_alignRight  
    android:layout_alignBottom  

    代码

    <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="${relativePackage}.${activityClass}" >
    
        <Button
            android:id="@+id/button1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:text="水平居中" />
        
        <Button
            android:id="@+id/button2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:text="垂直居中" />
        
        <Button
            android:id="@+id/button3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="垂直水平居中" />
        
        <Button
            android:id="@+id/button4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:text="布局顶端" />
        
        <Button
            android:id="@+id/button5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentBottom="true"
            android:text="布局左边底部" />
        
        <Button
            android:id="@+id/button6"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:text="布局右边" />
    
        <Button
            android:id="@+id/button7"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:text="布局右边底部" />
    </RelativeLayout>
    View Code

     梅花图形

    <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="${relativePackage}.${activityClass}" >
    
        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
    
            android:src="@drawable/a12" />
    
        <ImageView
            android:id="@+id/imageView5"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/imageView1"
            android:layout_toRightOf="@+id/imageView3"
            android:src="@drawable/a12" />
    
        <ImageView
            android:id="@+id/imageView4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@+id/imageView5"
            android:layout_toRightOf="@+id/imageView1"
            android:src="@drawable/a12" />
    
        <ImageView
            android:id="@+id/imageView3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignTop="@+id/imageView1"
            android:layout_toLeftOf="@+id/imageView1"
            android:src="@drawable/a12" />
    
        <ImageView
            android:id="@+id/imageView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@+id/imageView1"
            android:layout_alignLeft="@+id/imageView1"
            android:src="@drawable/a12" />
        
    </RelativeLayout>
    View Code
  • 相关阅读:
    golang书签
    linux每日知识整理
    leetcode动态规划笔记五---双序列型
    leetcode动态规划笔记三---单序列型
    leetcode动态规划笔记二---矩阵型DP
    leetcode动态规划笔记一---一维DP
    linux系统IO操作
    golang知识精要(二)
    ubuntu修改键盘键位映射
    Python 使用 cx_Oracle 第三方库连接操作Oracle数据库
  • 原文地址:https://www.cnblogs.com/weijj/p/3925653.html
Copyright © 2011-2022 走看看