zoukankan      html  css  js  c++  java
  • 相对布局 relativeLayout

    常用属性:

    android:layout_toLeftOf:某元素左边

    android:layout_toRightOf:某元素右边

    android:layout_alignBottom:将该控件的底部边缘与给定ID的底部边缘对齐;

    android:layout_below:某元素下面

    android:layout_alignParentBottom:父元素下面

    <?xml version="1.0" encoding="utf-8"?>
    <!--relativeLayout相对布局-->
    <RelativeLayout 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">

    <View
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:id="@+id/view_1"
    android:background="#000000"></View>
    <View
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:id="@+id/view_2"
    android:background="#FF0033"
    android:layout_below="@id/view_1"></View>
    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/qq"
    android:orientation="horizontal"
    android:layout_below="@id/view_2"
    android:background="#0066FF"
    android:padding="15dp">

    <View
    android:layout_width="100dp"
    android:layout_height="match_parent"
    android:background="#FF0033">
    </View>

    <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    android:padding="15dp">

    <View
    android:id="@+id/view_3"
    android:layout_width="100dp"
    android:layout_height="match_parent"
    android:background="#FF9900">

    </View>
    <View
    android:id="@+id/view_4"
    android:layout_width="100dp"
    android:layout_height="match_parent"
    android:background="#FF9900"
    android:layout_toRightOf="@id/view_3"
    android:layout_marginLeft="15dp">

    </View>

    </RelativeLayout>

    </LinearLayout>
    </RelativeLayout>

    实验结果

  • 相关阅读:
    GridSearchCV.grid_scores_和mean_validation_score报错
    scikit-learn使用fetch_mldata无法下载MNIST数据集的问题
    Python数据科学手册Seaborn马拉松可视化里时分秒转化为秒数的问题
    Jupyter导出PDF从入门到绝望(已解决)
    食谱数据库数据找不到的问题
    TensorBoard计算加速
    TensorBoard可视化
    TensorFlow高层封装:从入门到喷这本书
    <!DOCTYPE html> 详解
    不同数据库之间表数据的迁移
  • 原文地址:https://www.cnblogs.com/xiaoqing-ing/p/13060729.html
Copyright © 2011-2022 走看看