Linearlayout布局

Posted 一只小阿大嗷

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linearlayout布局相关的知识,希望对你有一定的参考价值。

  1. orientation 布局中组件的排列方式
  2. gravity 控制组件所包含的子元素的对齐方式,可多个组合
  3. layout_gravity 控制该组件在父容器里的对齐方式
  4. background 为该组件设置一个背景图片,或者是直接用颜色覆盖 divider 分割线
  5. showDividers 设置分割线所在的位置,none(无),beginning(开始),end(结束),middle(每两个组件间)
  6. dividerPadding 设置分割线的padding
  7. layout_weight (权重) 该属性是用来等比例的划分区域

注意:
layout_weight分配的是剩余空间,如果没有剩余空间,分配相当于没分配

当layout_height和layout_width设置成match_parent,layout_weight并不会分配
在这里插入图片描述
如果三个LinearLayout的layout_height都设置成match_parent且权重为1,会发现等比例显示
在这里插入图片描述
如果三个LinearLayout的layout_height都设置成match_parent且红色权重为2,红色和蓝色权重为1,会发现红色消失,红色和蓝色1比1占据了空间
在这里插入图片描述
3个match_parent,相当于占据了3个屏幕,但是我们只有一个屏幕

1(屏) - 3(屏) = -2(屏)
红色 1 - 2 * (2/4) = 0 (所以红色不显示)

所以一般layout_height都设置成0dp,这样就会根据权重走。

分割线除了通过divider设置,还可以通过view设置
在这里插入图片描述
在这里插入图片描述
activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:showDividers="middle"
    android:dividerPadding="60dp"
    android:orientation="vertical">

    <LinearLayout
        android:layout_gravity="center"
        android:background="#ff0000"
        android:layout_weight="1"
        android:layout_width="100dp"
        android:layout_height="0dp"/>

    <View
        android:background="#ff0000"
        android:layout_width="match_parent"
        android:layout_height="1dp"/>

    <LinearLayout
        android:layout_gravity="right"
        android:background="#00ff00"
        android:layout_weight="1"
        android:layout_width="100dp"
        android:layout_height="0dp"/>

    <LinearLayout
        android:layout_gravity="left"
        android:background="#0000ff"
        android:layout_weight="1"
        android:layout_width="100dp"
        android:layout_height="0dp"/>

</LinearLayout>

以上是关于Linearlayout布局的主要内容,如果未能解决你的问题,请参考以下文章

ClassCastException LinearLayout LayoutParams

如何在用java创建的布局内创建地图片段(GoogleMap)?

以编程方式在 RealtiveLayout 中设置 LinearLayout 的边距 - 不起作用

有没有办法禁止键盘移动LinearLayout?

使用滑动刷新布局的片段不转换

垂直线性布局中的多个片段