遇到這個錯誤:
android.content.res.Resources$NotFoundException: String resource ID #0x
查了一下,是因為,調用setText()方法時,傳入的int值,會被當成resourceID來使用,
改成 btn.setText(1+"")就可以了。
把int強轉成string就能當成内容顯示啦
遇到這個錯誤:
android.content.res.Resources$NotFoundException: String resource ID #0x
查了一下,是因為,調用setText()方法時,傳入的int值,會被當成resourceID來使用,
改成 btn.setText(1+"")就可以了。
把int強轉成string就能當成内容顯示啦