首页 > 其他 > 详细

andriod基础——相对布局RelativeLayout

时间:2021-02-03 23:31:51      阅读:26      评论:0      收藏:0      [点我收藏+]

1-1 特有属性(子属性)

1,layout_toLeftOf

设置组件a在组件b的左边,其赋值为组件b的id。下列代码表示view_3放在view_4的左侧。

        <RelativeLayout
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:background="#000000"
          android:padding="10dp">
          <View
          android:id="@+id/view_3"
          android:layout_width="100dp"
          android:layout_height="match_parent"
          android:background="#CD00"
          />
?
          <View
              android:id="@+id/view_4"
              android:layout_width="100dp"
              android:layout_height="match_parent"
              android:background="#CD00"
              android:layout_toRightOf="@id/view_3"
              android:layout_marginLeft="10dp"
              />

2,layout_toRightOf

组件a在组件b的右侧,使用方法与上一致。

3,layout_alignBotton

组件a关于组件b底部对其。

4,layout_alignParentBotton

组件a关于父容器底部对齐。

5,layout_below

组件a在组件b的下方

例:


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context=".MainActivity">
?
  <View
      android:id="@+id/view_1"
      android:layout_width="100dp"
      android:layout_height="100dp"
      android:background="#000000"
?
      />
  <View
      android:id="@+id/view_2"
      android:layout_width="100dp"
      android:layout_height="100dp"
      android:background="#0000F0"
      android:layout_below="@+id/view_1"
      />
  <LinearLayout
      android:id="@+id/layout_1"
      android:layout_width="match_parent"
      android:layout_height="200dp"
      android:layout_below="@+id/view_2"
      android:background="#FF00FF"
      android:padding="15dp"
      android:orientation="horizontal">
?
  <View
      android:layout_width="100dp"
      android:layout_height="100dp"
      android:background="#FCD0"
      />
?
      <RelativeLayout
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:background="#000000"
          android:padding="10dp">
          <View
          android:id="@+id/view_3"
          android:layout_width="100dp"
          android:layout_height="match_parent"
          android:background="#CD00"
          />
?
          <View
              android:id="@+id/view_4"
              android:layout_width="100dp"
              android:layout_height="match_parent"
              android:background="#CD00"
              android:layout_toRightOf="@id/view_3"
              android:layout_marginLeft="10dp"
              />
?
      </RelativeLayout>
  </LinearLayout>
?
?
</RelativeLayout>

 

andriod基础——相对布局RelativeLayout

原文:https://www.cnblogs.com/xiaoxiongaixuexi/p/14368751.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!