zoukankan      html  css  js  c++  java
  • android 相对布局例子代码

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        tools:context="com.example.prize.mydemo1.Main3Activity">
        <RelativeLayout
            android:id="@+id/relative1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#FFFFFF">
            <!--layout_alignParentLeft 控件位置在布局左边-->
            <!--layout_alignParentTop  控件位置在布局上面-->
            <view
                android:id="@+id/view1"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_alignParentLeft="true"
                android:layout_alignParentTop="true"
                android:background="#550000"
                />
            <!--layout_below 当前控件在目标控件下面-->
            <!--layout_alignRight 向目标控件右边对齐-->
            <view
                android:id="@+id/view2"
                android:layout_width="50dp"
                android:layout_height="match_parent"
                android:layout_below="@+id/view1"
                android:layout_alignRight="@+id/view1"
                android:background="#FF2222"
    
                />
            <!--layout_alignParentBottom 控件位置在布局的下面-->
            <!--layout_toLeftOf 当前控件在目标控件的左边-->
            <view
                android:id="@+id/view3"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_alignParentBottom="true"
                android:layout_toLeftOf="@id/view2"
                android:background="#FF7777"
    
                />
            <!--layout_above 当前控件在目标控件的上面-->
            <view
                android:id="@+id/view4"
                android:layout_width="50dp"
                android:layout_height="0dp"
                android:layout_above="@+id/view3"
                android:layout_below="@+id/view1"
                android:background="#FF8F44"/>
            <view
                android:id="@+id/view5"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_toLeftOf="@+id/view2"
                android:layout_below="@id/view1"
                android:layout_toRightOf="@id/view4"
                android:background="#FFDA44"/>
            <view
                android:id="@+id/view6"
                android:layout_width="50dp"
                android:layout_height="match_parent"
                android:layout_below="@+id/view5"
                android:layout_above="@+id/view3"
                android:layout_toLeftOf="@+id/view2"
                android:background="#D6FF33"
                />
            <view
                android:id="@+id/view7"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_above="@+id/view3"
                android:layout_toLeftOf="@+id/view6"
                android:layout_toRightOf="@+id/view4"
                android:background="#B4FF44"
                />
            <view
                android:id="@+id/view8"
                android:layout_width="50dp"
                android:layout_height="match_parent"
                android:layout_above="@+id/view7"
                android:layout_toRightOf="@+id/view4"
                android:layout_below="@+id/view5"
                android:background="#99FF55"
                />
            <view
                android:id="@+id/view9"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_below="@+id/view5"
                android:layout_toLeftOf="@+id/view6"
                android:layout_toRightOf="@+id/view8"
                android:background="#44FF44"
            />
            <view
                android:id="@+id/view10"
                android:layout_width="50dp"
                android:layout_height="match_parent"
                android:layout_toLeftOf="@+id/view6"
                android:layout_below="@+id/view9"
                android:layout_above="@+id/view7"
                android:background="#55FF99"
                />
            <view
                android:id="@+id/view11"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_above="@+id/view7"
                android:layout_toLeftOf="@+id/view10"
                android:layout_toRightOf="@+id/view8"
                android:background="#55FFDD"
                />
            <view
                android:id="@+id/view12"
                android:layout_width="50dp"
                android:layout_height="match_parent"
                android:layout_above="@+id/view11"
                android:layout_toRightOf="@+id/view8"
                android:layout_below="@+id/view9"
                android:background="#55DDFF"
                />
            <view
                android:id="@+id/view13"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                android:layout_below="@id/view9"
                android:layout_toRightOf="@+id/view12"
                android:layout_toLeftOf="@+id/view10"
                android:background="#44B4FF"
                />
    
    
    
    
        </RelativeLayout>
    
    </LinearLayout>


    布局样子

  • 相关阅读:
    数字资产交易所记录
    How to decode input data from a contract transaction without ABI?
    【收藏】ETH以太坊各个环境的公共的RPC服务!!!
    Solidity知识点集 — 溢出和下溢
    docker run 与docker start的区别
    子网掩码计算192.168.1.0/24 24 / 11
    Solidity-让合约地址 接受ETH的转账充值的 三种方式
    echarts的散点图
    debug.js中的length的错误
    26个工具类
  • 原文地址:https://www.cnblogs.com/guanxinjing/p/9708640.html
Copyright © 2011-2022 走看看