我是靠谱客的博主 凶狠滑板,最近开发中收集的这篇文章主要介绍Android移动开发--相对布局,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.第一组属性:android:layout_below,layout_above,layout_toLeftOf,layout_toRightOf

第二组属性:android:layout_alignLeft,right,top,bottom(对齐)

2.对齐至控件的基准线

android:layout_alignBaseline

144828_BLld_2861931.png

145009_6yXJ_2861931.png

 

3.与父控件的四个边缘对齐,对齐父控件中央

android:layout_alignParentLeft,right,top,bottom(对齐)

145306_OaoW_2861931.png

android:layout_centerInParent,Horizontal,Vertical

145408_Prww_2861931.png145449_plqC_2861931.png145428_Uh6z_2861931.png

4.android4.2新属性

android:layout_alignStart,End,ParentStart,End

145809_ygRq_2861931.png145749_9h0J_2861931.png

5.例子:登录界面

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:padding="40dp"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/editText"
        android:hint="username"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/textView" />

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/editText2"
        android:hint="password"
        android:layout_alignLeft="@id/editText"
        android:layout_alignRight="@id/editText"
        android:layout_below="@+id/editText" />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/textView"
        android:gravity="center"
        android:textSize="20sp"
        android:text="登陆界面"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="取消"
        android:id="@+id/button"
        android:layout_below="@+id/editText2"
        android:layout_alignParentRight="true" />

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

</RelativeLayout>

152025_8r6S_2861931.png

 

转载于:https://my.oschina.net/316258954/blog/725656

最后

以上就是凶狠滑板为你收集整理的Android移动开发--相对布局的全部内容,希望文章能够帮你解决Android移动开发--相对布局所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部