android Unable to inflate view tag without class attribute

定位 到 问题 是 布局文件出错,   Unable to inflate view tag without class attribute 

错误 原因

<view
    android:layout_width="match_parent"
    android:layout_height="2dp"
    android:background="@color/white"/>

 

 

分割线 处错误。<view ...    改为

<View
    android:layout_width="match_parent"
    android:layout_height="2dp"
    android:background="@color/white"/>

 大写的 <View ...

posted @ 2018-07-28 12:26  petercao  阅读(1029)  评论(1编辑  收藏  举报