`
avd羲羲
  • 浏览: 16151 次
文章分类
社区版块
存档分类
最新评论

android.content.res.Resources$NotFoundException: String resource ID #0x34fb5e

 
阅读更多
出现这种错误:
android.content.res.#0x34fb5e4atandroid.content.res.Resources.getText(Resources.java:201)
ERROR/AndroidRuntime(383):     at android.widget.TextView.setText(TextView.java:2817)
ERROR/AndroidRuntime(383):     at com................java:68)
出错行为:
int a =Integer.parseInt(num);
mTextView_num.setText((num_plus + a));

解决办法,(num_plus + a)为int型转成String型就OK了

原因:
见API:
final void setText(int resid)
final void setText(char[] text, int start, int len)
Sets the TextView to display the specified slice of the specified char array.
final void setText(int resid, TextView.BufferType type)
final void setText(CharSequence text) Sets the string value of the TextView.

如果我们setText()方法里是int型的话,会调 setText(int resid)这个方法,而不是 setText(CharSequence text)所以才会出现Resources$NotFoundException: String resource ID 这种错误
分享到:
评论

相关推荐

    Android为textView设置setText的时候报错的讲解方案

    此外,错误堆栈信息中还提到了`android.content.res.Resources$NotFoundException`,这是因为在尝试获取资源时没有找到相应的资源。这通常是因为资源ID不存在或者在当前的资源包中没有定义。在这个特定的场景中,...

    自定义Adapt可能出现错误及其解决方法

    然而,在自定义Adapter的过程中可能会遇到各种各样的问题,其中一个较为少见但又难以调试的问题就是`E/AndroidRuntime(390): android.content.res.Resources$NotFoundException: Resource ID #0x7f030004`这样的异常...

    NotFoundException: org.apache.commons.dbcp.BasicDataSource异常的解决方法

    在Java开发中,我们经常会遇到`ClassNotFoundException`,这是一个常见的运行时异常,通常表明JVM在尝试加载类时找不到对应的字节码文件。本篇将详细探讨如何解决在Struts框架中遇到的`java.lang....

    apktool_AndResGuard:修复apktool打包出现No resource found...

    No resource identifier found for attribute... No resource found that matches the given name..... ....... 使用apktool-2.0.3也可以回编译,但是比如微信回编译后会增加到110M左右,很不友好。 而使用apktool-...

    Android代码-javassist

    Java bytecode engineering toolkit Javassist version 3 ...Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation simple. It is a class library for editing bytecodes in Java;...

    android常见错误

    android.content.res.ResourcesNotFoundException **问题描述**:试图访问不存在的资源时抛出异常。 **解决方案**: - 确保`Manifest.xml`文件中声明的最小SDK版本与实际相符。 - 检查资源引用是否正确,确保资源...

    使用Android系统隐藏API

    ### 使用Android系统隐藏API 在Android开发过程中,为了实现某些特定功能或提升应用性能,开发者有时需要使用到系统内部的一些非公开API。这些API通常被称为“隐藏API”或“内部API”。本文将详细介绍如何访问并...

    Android中使用Service实现后台发送邮件功能实例

    本文实例讲述了Android...import android.content.res.Resources.NotFoundException; import android.os.Bundle; import android.widget.TextView; public class A05Activity extends Activity { private TextView tv;

    谷歌的zxing方式生成二维码的jar包和已经写好的工具类

    4. 调用助手类的`generateQRCode(String content, int width, int height)`方法,传入要编码的信息、期望的图像宽度和高度。 5. 生成的二维码图片通常会以`BufferedImage`形式返回,可以进一步保存为PNG或JPEG格式的...

    android常见错误集

    3. **Resources$NotFoundException**:通常发生在尝试访问一个不存在的资源时,如布局、图片、字符串等。检查资源ID是否正确,确保资源文件在正确的目录下,并且编译构建后资源已包含在APK中。 4. **...

    StringResources中定义一些特殊字符串[归类].pdf

    在Android开发中,String Resources是应用中用于存储和管理文本字符串的重要组成部分。这些字符串资源不仅可以帮助实现应用程序的国际化和本地化,还提供了便利的方式来进行文本的动态格式化和选择性展示。下面将...

    NotFoundException

    在Java编程语言中,`NotFoundException`是一个常见的异常类型,它通常表示在程序执行过程中尝试查找或访问一个资源,但该资源未被找到。这个异常可能是由于文件、网络连接、数据库记录或其他可查找实体的缺失引起的...

    android-aapt-wrapperv1.1

    android-aapt-wrapperv1.1,解决eclipse 没有 --no-version-vectors参数,解决NotFoundException: File res/drawable/abc_vector_test.xml,详情参阅https://blog.csdn.net/hao43284/article/details/82699802

    安卓生成 二维码 扫描二维码可从相册选

    private fun generateQRCode(content: String, width: Int, height: Int): Bitmap { val encodeContents = Encoder.encode(content, BarcodeFormat.QR_CODE, width, height) return Bitmap.createBitmap...

    swipeback-Android侧滑返回分析和实现(不高仿微信).zip

     } catch (Resources.NotFoundException e) { return 0;  } }Tips.4侧滑的核心原理是利用反射转换窗口透明,这会影响到下层Activity的生命周期。侧滑过程中窗口转为透明时,下层Activity会被唤醒,进入...

    Android ZXing1.6核心类库(core.jar)

    com.google.zxing.NotFoundException.class com.google.zxing.Reader.class com.google.zxing.ReaderException.class com.google.zxing.Result.class com.google.zxing.ResultMetadataType.class ...

    com.google.zxing.client.j2se.jar下载

    } catch (NotFoundException e) { System.out.println("No barcode found."); } ``` 5. **应用场景** - 文件处理:用户可以从本地文件系统上传图片,应用可以读取其中的条码信息。 - 屏幕捕获:开发者可以...

    java-adventures-resteasy-eap:博客文章http问题的POC

    你会得到类似的东西: 18:46:24,664 WARN [org.jboss.resteasy.core.ExceptionHandler] (http-/127.0.0.1:8080-1) failed to execute: javax.ws.rs.NotFoundException: Could not find resource for full path: ...

    java使用谷歌zxing实现二维码生成读取

    public static void generate(String content, String outputPath) { // 生成二维码的代码 } public static String read(String imagePath) { // 读取二维码的代码 return result.getText(); } } ``` 这样...

Global site tag (gtag.js) - Google Analytics