我有一个简单的线性布局,它在图形布局中显示得很好,但是当我构建项目时,我得到了这个控制台错误(这里我缺少什么?):
在包“android”中找不到属性“layout\u weightsum”的资源标识符
这是布局图:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_weightSum="3"
    android:baselineAligned="false"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" >

        <TextView
            android:id="@+id/tvSpine"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Spine"/>
    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" >

        <TextView
            android:id="@+id/tvPage"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Page"/>
    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" >

        <TextView
            android:id="@+id/tvThick"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Thick"/>
    </LinearLayout>
</LinearLayout>

最佳答案

变化:

android:layout_weightSum="3"

到:
android:weightSum="3"

此参数没有前缀。

07-24 09:27