线性布局权重 属性 不适用于 android 中的 Layout_height

Linear layout weightsum property is not working with Layout_height in android

我的应用程序有一个文本视图,它的高度应该根据重量进行调整 属性,但是它给出了红色错误。

代码是,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:weightSum="10">
    <TextView
        android:textSize="50dp"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="3"
        android:text="@string/hello_pleasse_login"
        />

</LinearLayout>

screenshot

我也尝试了 android:layout_height="0dp" 和 android:layout_height="0" 但它不起作用, 请帮忙

默认 linearLayout 方向是水平的 改成垂直的 android:orientation="vertical"

现在,您将不会收到错误

只需将 android:orientation="vertical" 添加到父布局。 LinearLayout 的默认方向是 Horizontal

<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:weightSum="10">
<TextView
    android:textSize="50dp"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="3"
    android:text="@string/hello_pleasse_login"
    />
</LinearLayout>