Android练级塔Android开发首页投稿(暂停使用,暂停投稿)

二之番外. LinearLayout的gravity,layou

2016-06-10  本文已影响342人  KaelQ

LinearLayout布局时有三种属性可能会经常遇到,并且还是不好理解的,所以特意拿出来说一下。

1.gravity

1.1 gravity

gravity属性是view本身内容的位置。
例如,TextView的text,Button的text等。

1.2 属性值

属性值 效果
top 将对象放在其容器的顶部,不改变其大小.
bottom 将对象放在其容器的底部,不改变其大小.
left 将对象放在其容器的左侧,不改变其大小.
right 将对象放在其容器的右侧,不改变其大小.
start 是为了兼容从左到右和从右到左的不同书写顺序的
end 是为了兼容从左到右和从右到左的不同书写顺序的
属性值 效果
center_vertical 将对象纵向居中,不改变其大小。
fill_vertical 如果需要时,将对象纵向填充
center_horizontal 将对象横向居中,不改变其大小
fill_horizontal 如果需要时,将对象横向填充
center 将对象居中,不改变其大小
fill 将对象横向和纵向填充
属性值 效果
clip_vertical 附加选项,用于按照容器的边来剪切对象的顶部和/或底部的内容. 剪切基于其纵向对齐设置:顶部对齐时,剪切底部;底部对齐时剪切顶部;除此之外剪切顶部和底部.垂直方向裁剪
clip_horizontal 附加选项,用于按照容器的边来剪切对象的左侧和/或右侧的内容. 剪切基于其横向对齐设置:左侧对齐时,剪切右侧;右侧对齐时剪切左侧;除此之外剪切左侧和右侧.水平方向裁剪

注意

下面是例子:


gravity
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#B2EBF2">
    <TextView
        android:layout_width="300dp"
        android:layout_height="50dp"
        android:background="#4db6ac"
        android:layout_gravity="right"
        android:layout_marginTop="1dp"
        android:text="right"
        android:textSize="40sp" />

    <TextView
        android:layout_width="310dp"
        android:layout_height="50dp"
        android:background="#4db6ac"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="1dp"
        android:text="center_horizontal"
        android:textSize="40sp" />
    <TextView
        android:layout_width="300dp"
        android:layout_height="50dp"
        android:background="#4db6ac"
        android:layout_gravity="center_vertical"
        android:layout_marginTop="1dp"
        android:text="center_vertical"
        android:textSize="40sp" />
    <TextView
        android:layout_width="300dp"
        android:layout_height="50dp"
        android:background="#4db6ac"
        android:layout_gravity="fill_horizontal"
        android:layout_marginTop="1dp"
        android:text="fill_horizontal"
        android:textSize="40sp" />
    <TextView
        android:layout_width="300dp"
        android:layout_height="50dp"
        android:background="#4db6ac"
        android:layout_gravity="clip_horizontal"
        android:layout_marginTop="1dp"
        android:text="clip_horizontal"
        android:textSize="40sp" />
</LinearLayout>

2.1 layout_gravity

细心的你发现了,与前一个十分相似。它们的区别是:

1.2 属性

属性一毛一样。。

属性值 效果
top 将对象放在其容器的顶部,不改变其大小.
bottom 将对象放在其容器的底部,不改变其大小.
left 将对象放在其容器的左侧,不改变其大小.
right 将对象放在其容器的右侧,不改变其大小.
属性值 效果
center_vertical 将对象纵向居中,不改变其大小。
fill_vertical 将对象纵向填充
center_horizontal 将对象横向居中,不改变其大小
fill_horizontal 将对象横向填充
center 将对象居中,不改变其大小
fill 将对象横向和纵向填充
属性值 效果
clip_vertical 附加选项,用于按照容器的边来剪切对象的顶部和/或底部的内容. 剪切基于其纵向对齐设置:顶部对齐时,剪切底部;底部对齐时剪切顶部;除此之外剪切顶部和底部.垂直方向裁剪
clip_horizontal 附加选项,用于按照容器的边来剪切对象的左侧和/或右侧的内容. 剪切基于其横向对齐设置:左侧对齐时,剪切右侧;右侧对齐时剪切左侧;除此之外剪切左侧和右侧.水平方向裁剪

注意

下面是例子:


layout_gravity
<?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:orientation="vertical">

    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginTop="1dp"
        android:background="#4db6ac"
        android:gravity="top"

        android:text="abca"
        android:textSize="40sp" />

    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_marginTop="1dp"
        android:background="#4db6ac"
        android:gravity="bottom"
        android:text="abca"
        android:textSize="40sp" />

    <TextView
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:layout_marginTop="1dp"
        android:background="#4db6ac"
        android:gravity="right"
        android:text="1"
        android:textSize="40sp" />

    <TextView
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:layout_marginTop="1dp"
        android:background="#4db6ac"
        android:gravity="center_horizontal"
        android:text="1"
        android:textSize="40sp" />

    <TextView
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:layout_marginTop="1dp"
        android:background="#4db6ac"
        android:gravity="fill"
        android:text="a"
        android:textSize="40sp" />


</LinearLayout>

3.layout_weight

这个属性在LinearLayout的复杂布局时可能会出现,但是大家好像都讲的不是很清楚。在此详细讲讲。
首先,这个属性是权重的意思。
比如这样

两个控件都是1:1,此时不用考虑怎么去设置具体数值值让他们平分,只需要设置两个控件android:layout_weight="1"就行了。

但是会有一些问题,一般都是Layout_width设置的问题:

这是为什么呢?
是因为layout_weight的属性是这样计算的:
自身长度+(子权重/子权重之和)剩余空间*
当为wrap_content的时候,计算时自身长度为0,剩余空间就是match_parent,自然就是正确的比重了。
当为match_parent的时候,计算时自身长度为match_parent,剩余空间为match_parent-(控件个数)3*match_parent=-2match_parent。那么三个的占比就为:

  1. match_parent+(1/6)*-2match_parent=4/6match_parent
  2. match_parent+(2/6)*-2match_parent=2/6match_parent
  3. match_parent+(3/6)*-2match_parent=0match_parent

最后的结果为3:1:0,所以使用match_parent就很怪异。所以Google官方给的解决方法是推荐layout_width="0dp"或layout_height="0dp"
这样的权重就不用像上面一样纠结了,十分的方便。

github源码

上一篇下一篇

猜你喜欢

热点阅读