Relativelayout(相对布局)示例

本文介绍了Android开发中常用的Relative Layout布局方式,详细解析了如何通过相关属性如android:layout_alignParentBottom等来实现控件的相对定位,帮助开发者更好地理解和运用相对布局。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

相对布局(RelativeLayout)
在这个容器内部的字子元素们可以使用彼此之间的相对位置,或容器之间的相对位置来进行定位。


相关属性:android:layout_abowe 将该控件置于给定ID的控件之上;
                  android:layout_below 将该控件置于给定ID的控件之下;
                  android:layout_toLeftOf 将该控件置于给定ID的控件之左;
                  android:layout_toRightOf 将该控件置于给定ID的控件之右;
                  android:layout_alignBaseline 该控件基线对齐给定ID的控件的基线;
                  android:layout_alignbBottom 该控件与给定ID的控件底部对齐;
                  android:layout_alignLeft 该控件与给定ID的控件左对齐;
                  android:layout_alignRight 该控件与给定ID的控件右对齐;
                  android:layout_alignTop 该控件与给定ID的控件顶对齐;
                  android:layout_alignParentLeft 如果为true,该控件位于父控件的左部;
                  android:layout_alignParentRight 如果为true,该控件位于父控件的右部;
                  android:layout_alignParentTop 如果为true,该控件位于父控件的顶部;
                  android:layout_alignParentBottom 如果为true,该控件位于父控件的低部;
                  android:layout_centerHorizontal 如果为true,该控件将被置于水平方向的中央;
                 android:layout_centerInParent 如果为true,该控件将被置于父控件水平方向和垂直方向;

                 android:layout_centerVertical 如果为true,该控件将被置于垂直方向的中央;
              

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

      <TextView
          android:id="@+id/textView1"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_alignParentLeft="true"
          android:layout_alignParentTop="true"
          android:text="用户名" />

      <Edittext
          android:id="@+id/edittext1"
          android:layout_height="wrap_content"
          android:layout_width="fill_parent"
          android:layout_below="@+id/textView1"
          />
      <Button
          android:id="@+id/button1"
          android:layout_height="wrap_content"
          android:layout_width="wrap_content"
          android:layout_below="@id/edittext1"
          android:layout_alignParentRight="true"
          android:text="取消"
          android:layout_marginLeft="10dip"
          />
      
        <Button
          android:id="@+id/button2"
          android:layout_height="wrap_content"
          android:layout_width="wrap_content"
          android:layout_toLeftOf="@id/button1"
          android:layout_alignBottom="@+id/button1"
          android:text="确定"
          android:layout_marginLeft="10dip"
          />

</RelativeLayout>

  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值