09-09 16:08:41.554:e/weaver (13140):
09-09 16:08:41.554:e/weaver (13140): android.content.res.resources$notfoundexception:string resource ID #0x61
09-09 16:08:41.554:e/weaver (13140): at Android.content.res.Resources.getText (resources.java:242)
09-09 16:08:41.554:e/weaver (13140): at Android.widget.TextView.setText (textview.java:3854)
Error: android.content.res.resources$notfoundexception:string resource ID #0x1
Cause: Generally occurs in the parameter int resId error, you assign string to int's resId, so the compiler can not find the correct resource then error.
In the simplest case, check your toast.maketext () Ah textview.settext. Functions, which typically have several overloads, such as:
Textview.settext (charsequence text);
Textview.settext (int resId);
......
If you accidentally pass an int value to it, then it will not show the int value, but run to the project to find a corresponding resource ID, of course, is not found, so the error.
Exception android.content.res.resources$notfoundexception:string Resource ID #0x61