3

グラフィカル レイアウトで問題なく表示されるこの単純な LinearLayout がありますが、プロジェクトをビルドすると、次のコンソール エラーが発生します (何が足りないのでしょうか?)。

パッケージ「android」の属性「layout_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>

4

1 に答える 1

7

変化する:

android:layout_weightSum="3"

に:

android:weightSum="3"

layoutこのパラメーターにはプレフィックスはありません。

于 2013-01-19T16:25:05.687 に答える