美文网首页
相对布局

相对布局

作者: 水固态中 | 来源:发表于2017-11-29 09:21 被阅读0次

1.兄弟控件第一组属性

layout_above

layout_below

layout_toRightOf

layout_toLeftOf

2.兄弟控件第2组属性

layout_alignLeft

layout_alignRight

layout_alignTop

layout_alignBottom

对齐基准线

layout_alignBaseLine

值 兄弟id

3.与父控件边缘对齐

layout_alignParentLeft

layout_alignParentRight

layout_alignParentTop

layout_alignParentBottom

值true false

4对齐父控件中央

layout_centerInParent

layout_centerHorizontal

layout_centerVertical

登陆界面实例

相对布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    <TextView
  android:id="@+id/mainText"
        android:text="登陆界面"
  android:textSize="20dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
  android:layout_centerHorizontal="true"/>
    <EditText
  android:id="@+id/username"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_below="@id/mainText"
  android:hint="username"/>
<EditText
  android:id="@+id/password"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_below="@id/username"
  android:hint="password"/>
<Button
  android:id="@+id/cancle"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignRight="@id/password"
  android:layout_below="@id/password"
  android:text="取消"/>
<Button
  android:id="@+id/deny"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_toLeftOf="@id/cancle"
  android:layout_alignTop="@id/cancle"
  android:text="登陆"/>

</RelativeLayout>

完成了

相关文章

  • 布局 - 相对布局

    RelativeLayout 相对布局 相对布局也是一种非常常用的布局,它可以通过相对定位的方式让控件出现在任何位...

  • 相对布局

    1.兄弟控件第一组属性 layout_above layout_below layout_toRightOf la...

  • android第四课。

    今天学习了两种布局方式。一种是线性布局,另一种是相对布局。 线性布局: 相对布局: 相对布局 图标要选择对齐方式

  • iOS 中利用相对布局和绝对布局,对Table中的文字自适应调整

    demo地址: dealText 相对布局 与 绝对布局 1.相对布局: 2.绝对布局: 本demo中自适应高度的...

  • Android之6大布局

    LineLayout (线性布局) RelativeLayout(相对布局) TableLayout(表格布局) ...

  • 2 布局

    LinearLayout(线性布局) RelativeLayout(相对布局) TableLayout(表格布局)...

  • android基础

    布局基本布局 FrameLayout线性布局 LinearLayout相对布局 RelativeLayout绝对布...

  • Android:控件布局(相对布局)RelativeLayout

    RelativeLayout是相对布局控件:以控件之间相对位置或相对父容器位置进行排列。 相对布局常用属性: 子类...

  • Android学习日记

    Day 10 Title 1:UI布局之相对布局RelativeLayout 相对布局是用于使得程序屏幕更加灵活和...

  • 安卓(android)六大布局详解

    线性布局:(LinearLayout) 相对布局:(RelativeLayout) 帧布局:(FrameLayou...

网友评论

      本文标题:相对布局

      本文链接:https://www.haomeiwen.com/subject/azzybxtx.html