自定义View XML文件出现No resource identifier found for attribute 'xxx' in package 'xxx.xxx.xxx'错误

前端之家收集整理的这篇文章主要介绍了自定义View XML文件出现No resource identifier found for attribute 'xxx' in package 'xxx.xxx.xxx'错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

自定义View XML文件出现No resource identifier found for attribute ‘xxx’ in package ‘xxx.xxx.xxx’错误解决方法

近期项目中,在更换包名以后,有自定义View的XML文件中出现No resource identifier found for attribute ‘xxx’ in package ‘xxx.xxx.xxx’问题,多番查找后发现问题出在xml文件的开头 xmlns:android_custom里面,必须将这里面的包名改成你现在引用的包名

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android_custom="http://schemas.android.com/apk/res/com.xxxx.xxxx" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/default_bg_color" >

xmlns:android_custom=”http://schemas.android.com/apk/res/com.xxxx.xxxx” 将XXXX后面的代码改成你所在的包名即可

原文链接:https://www.f2er.com/xml/294991.html

猜你在找的XML相关文章