android View setText NotFoundException 问题解决

Android View控件有个setText方法,如果你传的不是字符串类型的基础数据类型比如传个整型它会报如下错误。 
12-22 10:38:46.008: ERROR/AndroidRuntime(1703): Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x0 

解决方法:把基础数据类型转换成字符类型就可以了,它内部应该没有将基础数据类型进行转换。

你可能感兴趣的:(exception)