我有这个简单的LinearLayout在图形布局中显示得很好,但是当我构建项目时,我得到了这个控制台错误(我在这里缺少什么?): 在’android‘包中找不到属性’layout_weightSum’的资源标识符 这
在’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>更改:
android:layout_weightSum="3"
至:
android:weightSum="3"
此参数没有布局前缀.