Android异常篇 android.content.res.Resources$NotFoundException: String resource ID #0x1
Posted 彭老希
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android异常篇 android.content.res.Resources$NotFoundException: String resource ID #0x1相关的知识,希望对你有一定的参考价值。
检查TextView/AppCompatTextView控件,在setText()方法内是否传入了除String类型的值进入,例如Int类型的值
举例说明:
//错误写法:
mTextview.setTime(2021) ;//【不能直接传入int类型的值,虽然这么写没有报错,但是会引发标题异常】
//正确写法:
mTextview.setTime("欢迎关注彭老希");
//或者 mTextview.setTime(""+"欢迎关注彭老希"); 【应该传入String类型的值】
以上是关于Android异常篇 android.content.res.Resources$NotFoundException: String resource ID #0x1的主要内容,如果未能解决你的问题,请参考以下文章
Android NDK开发篇:Java与原生代码通信(异常处理)
Android异常篇 efore task ‘:app:compileDebugJavaWithJavac‘
Android异常篇 efore task ‘:app:compileDebugJavaWithJavac‘