• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

添加相对布局方式

武飞扬头像
柚&.屿づ
帮助1

<?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">

    <!--
        android:layout_centerInParent  正中
        android:layout_alignParentLeft  居左
        android:layout_alignParentRight  居右
        android:layout_alignParentTop  居上
        android:layout_alignParentBottom  居下
        android:layout_centerHorizontal  水平居中
        android:layout_centerVertical  垂直居中
    -->
    <TextView
        android:id="@ id/center"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:text="屏幕正中"
        android:textSize="30sp"
        android:background="#ff0000"
        android:layout_centerInParent="true">
    </TextView>

    <!--
    1.在参照物的某边
        android:layout_toLeftOf  在id的左边
        android:layout_toRightOf  在id的右边
        android:layout_above  在id的上边
        android:layout_below  在id的下边
    2.在参照物的边线对齐
        android:Layout_layout_alignTop  上边线对齐
        android:Layout_layout_alignBottom  下边线对齐
        android:Layout_layout_alignLeft  左边线对齐
        android:Layout_layout_alignRight  右边线对齐

    -->

    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:text="中偏左上"
        android:textSize="30sp"
        android:background="#00ff00"
        android:layout_toLeftOf="@id/center"
        android:layout_above="@id/center">
    </TextView>
    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:text="中偏右上"
        android:textSize="30sp"
        android:background="#00ff00"
        android:layout_above="@id/center"
        android:layout_toRightOf="@id/center">
    </TextView>
    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:text="中偏左下"
        android:textSize="30sp"
        android:background="#00ff00"
        android:layout_toLeftOf="@id/center"
        android:layout_below="@id/center">
    </TextView>
    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:text="中偏右下"
        android:textSize="30sp"
        android:background="#00ff00"
        android:layout_toRightOf="@id/center"
        android:layout_below="@id/center">
    </TextView>

</RelativeLayout>
学新通

学新通

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhgfaick
系列文章
更多 icon
同类精品
更多 icon
继续加载