答案 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>
<强>输出:强>
答案 1 :(得分:-1)
将textview的高度更改为fill_parent
android:height="fill_parent"