我有以下代码从扩展的类发送电子邮件BroadcastReceiver
:
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
S2Mconfig s2m = new S2Mconfig();
Log.d(TAG, "Create Intent for mail to " + address);
emailIntent.setType("plain/text");
emailIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, s2m.read(thisContext));
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, address);
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, body);
Log.d(TAG, String.format("Sending mail %s", emailIntent.toString()));
thisContext.startActivity(Intent.createChooser(emailIntent, "Send mail..."));
是在BroadcastReciever
中注册的manifest
,我设置了INTERNET
权限:
<uses-permission android:name="android.permission.INTERNET" />...
<receiver android:name=".SmsReceiver" android:exported="true" >
<intent-filter android:priority="1000">
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
<action android:name="android.provider.Telephony.MMS_RECEIVED" />
</intent-filter>
</receiver>
日志确认FLAG_ACTIVITY_NEW_TASK
在调用 之前设置了startActivity()
。尽管如此,我仍然感到害怕"Calling startActivity()... requires the FLAG_ACTIVITY_NEW_TASK flag...
任何线索将不胜感激。