我可以看到xml
的一部分,错误来自<view/>
标记。当我删除其中一个视图时,它会没问题。我也使用过它,但它没有出现错误。那是什么原因呢?
谢谢!
<view
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@color/colorPopul">
</view>
答案 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"/>