Error: Expected resource of type xxx [ResourceType]

  运行环境:Android Studio 1.4

  gradle版本:2.10

  工程编译没有问题,并且能在模拟器和真机上正常运行,但是当打包成Apk的时候,出现了

    Error:Error: Expected resource of type color [ResourceType]  这个错误,导致打包不成功。

    以下是出错地方的代码:

      

private static RadioButton createGroupTabItem(Context context,
			MemberType data) {
		RadioButton rb = new RadioButton(context);
		...
rb.setTextColor(context.getResources().getColorStateList(R.drawable.tab_text_checker_white_to_theme));
		...
		return rb;
	}

  其实也就是创建一个RadioButton,然后设置字体颜色的时候,出现了上述错误,最后在StackOverflow上找到了一个解决办法:

  在build.gradle文件中增加一下信息,然后打包成功了:

android {
 lintOptions {
    disable "ResourceType"
  }
}

  问题虽然解决了,但是我并不知道原因,而且这么修改是否会导致一些其他位置的问题,这个就无法确认,因此我尝试去了解。

  还是StackOverflow,传送门:http://stackoverflow.com/questions/34293718/expected-resource-of-type-animator-resourcetype

  这哥们儿遇到的问题其实个我这个很类似,通过那个,我知道原因了,我把资源类型弄错了,总的来说这是我的不规范编程导致的,怎么说呢,我上面是设置textcolor,那说明我应该使用一个color资源,单色值的应该来源于colors.xml中定义的,但是我上面是使用的一个colorstate,是一个自定义的selector,一个xml文件,这个时候我们应该把这个文件放在res/color目录中,而不是res/drawable目录中,然后使用R.color.xxx去引用,这样就没问题了。详见官方说明:https://developer.android.com/guide/topics/resources/available-resources.html

  到此我们终于找到事情的原委了,然后我们说下为什么在build.gradle文件中添加上述配置之后就能打包成功呢,其实上述配置是禁用资源类型检测,这样在打包过程中就不会因为资源类型不匹配而提示错误了。

  看来还是自己基础不过关啊。这里提醒一点,在Eclipse中,像上述操作,并不会出现这样的问题,所以说啊,android studio开发跟eclipse开发在工程管理上,有很多不一样的地方,我的另外一篇文章也有关于jar方面的不同。

时间: 2024-10-30 01:57:55

Error: Expected resource of type xxx [ResourceType]的相关文章

Android studio 报错:Error:Error: Expected resource of type drawable [ResourceType]

解决方法: 这样的写法报错, // animCard.setBackgroundResource(R.anim.multi_finger_animation); animCard.setImageResource(R.anim.multi_idcard_animation); 解决办法: 在build.gradle文件加入下面的代码 lintOptions{ disable "ResourceType"}

error: expected constructor, destructor, or type conversion before '.' token

error: expected constructor, destructor, or type conversion before '.' token   找了半天原因,原来是犯了基础知识不扎实的错误,C++中,全局阈只能声明.初始化变量: 不能用于赋值.运算.调用函数等!!! error: expected constructor, destructor, or type conversion before '.' token

g++ error: expected nested-name-specifier before 'XXX'

1 template <typename addrT=int,typename valuT=int,typename stream_addrT=bm_addr,typename stream_sizeT=int64> 2 class stream_chip : public chip<addrT,valuT>{ 3 public: 4 typedef typename stream_addrT stream_addr_type; 5 typedef typename stream_

spring boot注入error,Consider defining a bean of type &#39;xxx&#39; in your configuration问题解决方案

经常出现这问题一定是非spring生态圈的@标签 没被spring引入,如mybatis等 因为在默认情况下只能扫描与控制器在同一个包下以及其子包下的@Component注解,以及能将指定注解的类自动注册为Bean的@[email protected]和@ Repository 那个这个时候就需要@ComponentScan或者@MapperScan了 要是xml配置注入有这问题,麻烦一遍一遍看xml文件的配置,绝对是哪里没写匹配. spring boot注入error,Consider def

error: expected declaration specifiers or &#39;...&#39; before xxx(xxx是函数形参)

在使用带参有返回值的函数指针做参数时,编译出现下面情况 -------- error: expected declaration specifiers or '...' before 'FunType' 情形描述: a.h: typedef void (*FunType)(); void callFun(FunType p); a.c : #include "a.h" FunType myfuntype=NULL; void callFun(FunType p) { myfuntype

Error: EBUSY: resource busy or locked, symlink &quot;xxx&quot; 的解决方法

上面是报错信息. 解决方法:当我们在npm i 安装依赖的时候,会遇到这个Error: EBUSY: resource busy or locked, symlink....的问题.解决的 办法就是关掉电脑的杀毒软件,比如360 等等 原文地址:https://www.cnblogs.com/zengsf/p/10959159.html

Error: expected expression, got &#39;}&#39;

1.错误描述 Error: expected expression, got '}' .globalEval/<@http://localhost:8080/Sys/resource/global/plugins/jquery.min.js:2:2613 [email protected]://localhost:8080/Sys/resource/global/plugins/jquery.min.js:2:2587 [email protected]://localhost:8080/Sys

Cacti ERROR: Expected some arguments after &#39;COMMENT:&#39;

今天导入了一个主机模板,然后应用到device上,却没有出图,于是查看其rrdtool graph语句,看是否有问题,果然,这里有一个错误. AREA:cdefe#B90054FF:'Outbound'GPRINT:cdeff:LAST:'Last\:%8.2lf %s' GPRINT:cdeff:AVERAGE:'Avg\:%8.2lf %s' GPRINT:cdeff:MAX:'Max\:%8.2lf %s\n' HRULE:0#B90054FF:'' COMMENT:'' \       

appcompat_v7\res\values-v21\themes_base.xml:191: error: Error: No resource found that matches the gi

appcompat_v7\res\values-v21\themes_base.xml:191: error: Error: No resource found that matches the given name: attr 'android:XXX' 创建Android项目时,ADT会自动的创建一个名为appcompat_v7的 Support Library 项目,然后你会看到values21下面出现了很多的错误.具体原因不知 问题解决:将appcompat_v7使用最新的API 22,