Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了在’android’包中找不到属性’layout_weightSum’的资源标识符大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个简单的LinearLayout在图形布局中显示得很好,但是当我构建项目时,我得到了这个控制台错误(我在这里缺少什么?):

在’android‘包中找不到属性’layout_weightSum’的资源标识符

这是布局:

<LinearLayout xmlns:android="http://scheR_706_11845@as.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"

此参数没有布局前缀.

@H_419_37@

大佬总结

以上是大佬教程为你收集整理的在’android’包中找不到属性’layout_weightSum’的资源标识符全部内容,希望文章能够帮你解决在’android’包中找不到属性’layout_weightSum’的资源标识符所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。