当前位置:   article > 正文

Android studio笔记:安卓基本开发布局(RelativeLayout)_安卓relativelayout

安卓relativelayout

 RelativeLayout相对布局,这个子容器是相对父容器,默认在左上;因为我们没有设置定位,因此第二个将第一个覆盖了

android:layout_alignParentRight="true"相对父容器右对齐

android:layout_toRightOf="@+id/rl1"相对兄弟元素的右边

android:layout_marginLeft="100dp"是绿色容器跟父容器(黄色的)距离

代码

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".MainActivity">
  8. <RelativeLayout
  9. android:id="@+id/rl1"
  10. android:layout_alignParentRight="true"
  11. android:background="#ff0000"
  12. android:layout_width="100dp"
  13. android:layout_height="100dp"/>
  14. <RelativeLayout
  15. android:layout_marginLeft="100dp"
  16. android:background="#00ff00"
  17. android:layout_width="100dp"
  18. android:layout_height="100dp"/>
  19. </RelativeLayout>
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/270302
推荐阅读
相关标签
  

闽ICP备14008679号