我想从我的广播接收器开始多项活动。我有两个类,即 ReadContacts 和 CallDetails。我想一一开始。像第一个 calldetails 活动应该开始然后下一步。我试过下面的代码,它工作正常。
Intent calldetails = new Intent();
calldetails.setClassName("com.simplereader", "com.simplereader.Calldetails");
calldetails.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(calldetails);
然后我尝试下面的代码开始其他活动
Intent readcontacts = new Intent();
readcontacts.setClassName("com.simplereader", "com.simplereader.ReadContacts");
calldetails.setFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
context.startActivity(readcontacts);
但它不起作用,应用程序崩溃。