当我单击回收器视图项目时,我的应用程序崩溃了,由于Toast.make()
而发生错误,当我在函数中评论或删除Toast
时check(positon:Int)
它不会崩溃。它只是在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()
}
错误:
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$1.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()
您尝试使用该方法:
public static Toast makeText (Context context,
int resId,
int duration)
其中 resId 表示要使用的字符串资源的资源ID(如R.string.xxxx)
.
使用position.toString()
将 int 转换为字符串:
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()