android.content.res.Resources$NotFoundException: String resource ID ***

遇到这个错误:

android.content.res.Resources$NotFoundException: String resource ID ***

是因为调用setText()方法时,传入的int值,会被当成resourceID来使用,
改成

moneyTextView.setText(String.valueOf(***))

就可以了。
把int强转成string就可以解决了

你可能感兴趣的:(android.content.res.Resources$NotFoundException: String resource ID ***)