码迷,mamicode.com
首页 > 移动开发 > 详细

android Unable to inflate view tag without class attribute

时间:2018-07-28 13:37:10      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:layout   问题   hit   splay   oid   tag   back   错误   原因   

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

android Unable to inflate view tag without class attribute

标签:layout   问题   hit   splay   oid   tag   back   错误   原因   

原文地址:https://www.cnblogs.com/bluestorm/p/9381644.html

(1)
(1)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!