即使在分配重量之后布局中的空间

时间:2017-05-02 18:20:04

标签: android android-layout-weight

为什么在android的底部有空格它应该通过分布式weight覆盖所有空格

enter image description here

2 个答案:

答案 0 :(得分:0)

您必须使用weightSum属性android:weightSum="value"设置LinearLayout值。

试试这个:

<?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:weightSum="17">

    <ImageView
        android:src="@drawable/ocean"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:scaleType="centerCrop"
        android:layout_weight="5"/>

    <TextView
        android:text="You're Invited"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:textColor="@android:color/white"
        android:textSize="54sp"
        android:background="#009688"
        android:layout_weight="10"/>

    <TextView
        android:text="Bonfire at the beach"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:textColor="@android:color/white"
        android:textSize="34sp"
        android:background="#009688"
        android:layout_weight="2"/>

</LinearLayout>

<强>输出:

enter image description here

答案 1 :(得分:-1)

将textview的高度更改为fill_parent

android:height="fill_parent"