谁能告诉我这段代码有什么问题。在我的 3 台不同的设备上,它工作得很好,但是当这个活动开始时,我的很多应用程序用户都在报告 fc
来自每个人的 Logcat 在 onCreate 中都说 NullPointerException
代码: pastebin
这就是我开始这项活动的方式
Intent intent = new Intent();
intent.setClass(this,ProfileEditor.class);
intent.putExtra("profileName","");//this is when creating new profile, when editing profile name goes here
startActivityForResult(intent,GET_CODE);