一、前言:
公司项目中之前用的是Eclipse 项目转化为 Android Studio 项目时报错“<item> inner element must either be a resource reference or empty”
有的人更新AS之后,之前有一个老的项目出现如上所示的问题,导致build失败。
翻译之后: <item>内部元素必须是资源引用或为空。
二、解决:
1. 错误格式:
<item name="animator" type="id">false</item>
<item name="date_picker_day" type="id">false</item>
在开发文档中,https://developer.android.com/guide/topics/resources/more-resources#Id
也有提到说上面那种方式已经不能这么写了,新的方法如下:
2. 正确格式:
<item name="animator" type="id"/>
<item name="date_picker_day" type="id"/>
三、如果引入的是第三方包怎么修改呢?
1、在你的项目res\values文件夹下新建ids.xml文件
2、将之前编译出错的item重新写一遍,改成下面的
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item name="animator" type="id"/>
<item name="date_picker_day" type="id"/>
...
</resources>
重新build之后AS会自动处理这些问题。
参考作者:有没有一种幸运和你相遇
链接:https://www.jianshu.com/p/592308a335ff