一个容易忽视的bug之 Unable to inflate view tag without class attribute

<view
    android:layout_marginLeft="10dp"
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="#ff0000" />

以上代码报Unable to inflate view tag without class attribute异常,不仔细看还找不到问题所在,view不小心小写了,应该大写,特此记录一下。

<View
    android:layout_marginLeft="10dp"
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="#ff0000" />

猜你喜欢

转载自blog.csdn.net/qq_15131627/article/details/81169869
今日推荐