• Android Studio [相对布局RelativeLayout]


    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">
        
        <View
            android:id="@+id/view_1"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:background="#000000"
            />
        <View
            android:id="@+id/view_2"
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:background="#fa1919"
            android:layout_below="@id/view_1"
            />
        <LinearLayout
    
            android:id="@+id/view_3"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:layout_below="@id/view_2"
            android:orientation="horizontal"
            android:background="#0b56f9"
            android:padding="15dp">
            <View
                android:layout_width="100dp"
                android:layout_height="match_parent"
                android:background="#fa1919"/>
            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="#000000"
                android:padding="15dp">
                <View
                    android:id="@+id/view_4"
                    android:layout_width="100dp"
                    android:layout_height="match_parent"
                    android:background="#3a75ff"/>
                <View
                    android:id="@+id/view_5"
                    android:layout_width="100dp"
                    android:layout_height="match_parent"
                    android:background="#ecd931"
                    android:layout_toRightOf="@id/view_4"
                    android:layout_marginLeft="15dp"/>
            </RelativeLayout>
        </LinearLayout>
    
    </RelativeLayout>

    我学习的

    <RelativeLayout +代码 /></RelativeLayout>
    android:layout_toRightOf="此处写id"设定在某个块的右边
    结果

    
    
  • 相关阅读:
    HDU 1019 Least Common Multiple GCD
    HDU 1263 水果 结构体排序
    HDU 1256 画8 模拟题
    HDU 2058 The sum problem 数学题
    VC6.0开发OCX按钮控件
    利用压缩软件制作插件安装包
    vs生成的exe程序和相关dll打包
    vs2010开发activex(MFC)控件/ie插件(一)
    vs2010开发activex(MFC)控件/ie插件(二):js传参数
    vs2010开发activex(MFC)控件/ie插件(三),js调用ocx控件的接口函数
  • 原文地址:https://www.cnblogs.com/zlc364624/p/10700922.html
Copyright © 2020-2023  润新知