有人可以告诉我这段代码有什么问题。在我的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);