在xml中添加视图标记显示错误:无法在没有class属性的情况下对视图标记进行膨胀

时间:2016-12-25 11:17:18

标签: android xml tags android-view

我可以看到xml的一部分,错误来自<view/>标记。当我删除其中一个视图时,它会没问题。我也使用过它,但它没有出现错误。那是什么原因呢? 谢谢!

<view
   android:layout_width="1dp"
   android:layout_height="match_parent"
   android:background="@color/colorPopul">
</view>

2 个答案:

答案 0 :(得分:2)

Android Studio -Unable to inflate view tag without class attribute可能重复。

视图更改为查看

<View
    android:layout_width="1dp"
    android:layout_height="match_parent"
    android:background="@color/colorPopul" />

答案 1 :(得分:0)

我在这个错误上苦苦挣扎,最后我找到了解决方案,这很简单

<View
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>