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 ...