定位 到 问题 是 布局文件出错,   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 ...

相关文章:

  • 2021-10-20
  • 2022-12-23
  • 2021-06-16
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-22
  • 2021-06-29
  • 2021-11-16
  • 2021-11-18
相关资源
相似解决方案