当前位置:   article > 正文

【Android】五种常用布局方式详解(图文+示例)持续更新中..._android布局方式有几种

android布局方式有几种

一、布局总述

1线性布局以水平和垂直方向排列
2相对布局通过相对定位排列
3帧布局开辟空白区域,帧里的控件(层)叠加
4表格布局表格形式排列
5约束布局可视化的方式编写布局

二、线性布局

1、属性

android:id唯一值
android:layout_height

高,

wrap_content:(随内容变化,类似auto),

match_parent:(同父元素一样)

单元最好是:dp

android:layout_width宽,同上
android:background背景色
android:layout_margin外边距
android:layout_padding内边距
android:orientationhorizontal水平排列;vertical竖直排列
android:layout_weightView,权重平分
android:gravity居中

1、横向排列   android:orientation="horizontal"

 

  1. ​​<?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="horizontal"
  6. >
  7. <Button
  8. android:id="@+id/button1"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:text="按钮1"
  12. android:layout_marginTop="20dp"
  13. />
  14. <Button
  15. android:id="@+id/button2"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:text="按钮2"
  19. android:layout_marginTop="20dp"
  20. android:layout_marginLeft="20dp"
  21. />
  22. <Button
  23. android:id="@+id/button3"
  24. android:layout_width="200dp"
  25. android:layout_height="wrap_content"
  26. android:text="按钮3"
  27. android:layout_marginTop="20dp"
  28. android:layout_marginLeft="20dp"
  29. />
  30. </LinearLayout>

1、纵向排列   android:orientation="vertical"

 

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. >
  7. <Button
  8. android:id="@+id/button1"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:text="按钮1"
  12. android:layout_marginTop="20dp"
  13. />
  14. <Button
  15. android:id="@+id/button2"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:text="按钮2"
  19. android:layout_marginTop="20dp"
  20. android:layout_marginLeft="20dp"
  21. />
  22. <Button
  23. android:id="@+id/button3"
  24. android:layout_width="200dp"
  25. android:layout_height="wrap_content"
  26. android:text="按钮3"
  27. android:layout_marginTop="20dp"
  28. android:layout_marginLeft="20dp"
  29. />
  30. </LinearLayout>

 

.

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/582954
推荐阅读
相关标签
  

闽ICP备14008679号