Resources$NotFoundException:字符串资源 ID #0x0 Toast.makeText
Resources$NotFoundException: String resource ID #0x0 with Toast.makeText
当我点击 RecyclerView 项目时,我的应用程序崩溃了,错误发生是因为 Toast.make()
,当我评论或删除 check(positon:Int)
函数中的 Toast
时,它不会崩溃。它只会在 Toast
存在时崩溃。我搜索了很多修复程序,但找不到,请帮助修复此错误
fun check(position: Int)
{
Log.i("Check", position.toString())
//if i remove the comment the app will crash
//Toast.makeText(this, position, Toast.LENGTH_SHORT).show()
}
Error:
W/ResourceType: No package identifier when getting value for resource number 0x00000000
D/AndroidRuntime: Shutting down VM
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.firebase_image_upload, PID: 27287
android.content.res.Resources$NotFoundException: String resource ID #0x0
at android.content.res.Resources.getText(Resources.java:331)
at android.widget.Toast.makeText(Toast.java:287)
at com.example.firebase_image_upload.ImagesActivity$check.run(ImagesActivity.kt:63)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:6077)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:866)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:756)
android.content.res.Resources$NotFoundException: String resource ID #0x0
使用 Toast.makeText(this, position, Toast.LENGTH_SHORT).show()
您正在尝试使用 the method:
public static Toast makeText (Context context,
int resId,
int duration)
其中 resId 代表 要使用的字符串资源的资源 ID(如 R.string.xxxx)
.
使用position.toString()
将int转换为String:
Toast.makeText(this, position.toString(), Toast.LENGTH_SHORT)
Toast.makeText(ProjectActivity.this, "Your message here", Toast.LENGTH_SHORT).show();
第二个参数是String
,但是你在这里使用的是Int
,把你的Int
转换成String
就可以了
例如:
`Toast.makeText(this, position.toString(), Toast.LENGTH_SHORT).show()`
Toast.makeText(this, ""+position, Toast.LENGTH_SHORT).show()
当我点击 RecyclerView 项目时,我的应用程序崩溃了,错误发生是因为 Toast.make()
,当我评论或删除 check(positon:Int)
函数中的 Toast
时,它不会崩溃。它只会在 Toast
存在时崩溃。我搜索了很多修复程序,但找不到,请帮助修复此错误
fun check(position: Int)
{
Log.i("Check", position.toString())
//if i remove the comment the app will crash
//Toast.makeText(this, position, Toast.LENGTH_SHORT).show()
}
Error:
W/ResourceType: No package identifier when getting value for resource number 0x00000000
D/AndroidRuntime: Shutting down VM
E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.firebase_image_upload, PID: 27287
android.content.res.Resources$NotFoundException: String resource ID #0x0
at android.content.res.Resources.getText(Resources.java:331)
at android.widget.Toast.makeText(Toast.java:287)
at com.example.firebase_image_upload.ImagesActivity$check.run(ImagesActivity.kt:63)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:6077)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:866)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:756)
android.content.res.Resources$NotFoundException: String resource ID #0x0
使用 Toast.makeText(this, position, Toast.LENGTH_SHORT).show()
您正在尝试使用 the method:
public static Toast makeText (Context context,
int resId,
int duration)
其中 resId 代表 要使用的字符串资源的资源 ID(如 R.string.xxxx)
.
使用position.toString()
将int转换为String:
Toast.makeText(this, position.toString(), Toast.LENGTH_SHORT)
Toast.makeText(ProjectActivity.this, "Your message here", Toast.LENGTH_SHORT).show();
第二个参数是String
,但是你在这里使用的是Int
,把你的Int
转换成String
就可以了
例如:
`Toast.makeText(this, position.toString(), Toast.LENGTH_SHORT).show()`
Toast.makeText(this, ""+position, Toast.LENGTH_SHORT).show()