我有这个简单的线性布局,它在图形布局中显示得很好,但是当我构建项目时,我得到了这个控制台错误(我在这里错过了什么?):
在包“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>