导致此Android RuntimeException的原因是什么?
02-01 15:13:41.316: ERROR/AndroidRuntime(3989): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.cccc.xxxx/com.cccc.xxxx.ActivityMyScreen}: java.lang.IllegalArgumentException: contentView required: pkg=com.cccc.xxxx id=3145728 notification=Notification(vibrate=null,sound=null,defaults=0x0)
我从其他活动开始此活动如下:
Intent intent = new Intent();
intent.setClass(mContext, ActivityMyScreen.class);
intent.putExtra("username", mUserName);
startActivity(intent);
此异常可能是什么原因?
谢谢,
PP。
答案 0 :(得分:1)
它的全部在错误信息中...你用于“contentView”的参数/参数是错误的...只是阅读错误信息!
MyScreenActivity中onCreate的代码对于查找问题比您创建的意图更重要。