码迷,mamicode.com
首页 > 移动开发 > 详细

Android 相对布局 RelativeLayout

时间:2019-11-01 20:58:18      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:one   logs   apk   lin   href   com   cal   roi   span   

<!-- 在main元素的上方 -->
android:layout_above="@+id/main"
<!-- 在main元素的下方 -->
android:layout_below="@+id/main"
<!-- 在main元素的左边 -->
android:layout_toLeftOf="@+id/main"
<!-- 在main元素的右边 -->
android:layout_toRightOf="@+id/main"
<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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="button" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/button"
        android:layout_toLeftOf="@+id/button"
        android:text="button1" />

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/button"
        android:layout_toRightOf="@+id/button"
        android:text="button2" />

    <Button
        android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/button"
        android:layout_toLeftOf="@+id/button"
        android:text="button3" />

    <Button
        android:id="@+id/button4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/button"
        android:layout_toRightOf="@+id/button"
        android:text="button4" />

</RelativeLayout>
技术图片

Android 相对布局 RelativeLayout

标签:one   logs   apk   lin   href   com   cal   roi   span   

原文地址:https://www.cnblogs.com/zhangxuechao/p/11779184.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!