单击通知以启动活动(电子邮件)应用程序失败

时间:2014-12-24 22:49:09

标签: android android-intent

我的应用程序的目的是使用内置电子邮件配置的用户,根据使用广播接收器警报设置的计划在预定时间发送电子邮件。 收件人:主题已经填写完毕。所有用户必须做的是,当闹钟响起时点击通知,应该通过我的SendMail.class通过意图提示用户使用哪个电子邮件程序。

如果我直接通过将它放入我的" MainActivity onCreate中来直接调用它,它就可以工作。如果我将它放在我构建通知的Intent定义中,它似乎永远不会被调用。这是我的问题的关键。当用户点击通知并且它无法正常工作时,我需要intent create chooser弹出有效的电子邮件程序列表。任何帮助将不胜感激! :)

巧合的是,我还有一个首选项片段来保存我的应用程序的设置,如果我将对SendMail.class的调用替换为SetPreferenceActivity,则通知按预期工作(即,当用户点击时它成功调用另一个类它)。

以下是我的通知管理器方法的代码:

public void createNotification(View view) {

    Context context = getApplicationContext();

    SharedPreferences mySharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);

    String default_subject = mySharedPreferences.getString("default_subject", "");
    default_subject = default_subject + android.text.format.DateFormat.format("E MM-dd", new java.util.Date());

    Intent intent = new Intent(this, SendMail.class);


    intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);

    PendingIntent pIntent = PendingIntent.getActivity(this, 0, intent,
            PendingIntent.FLAG_CANCEL_CURRENT);

    Notification noti = new Notification.Builder(this)
            .setContentTitle("Time to Send the Email")
            .setContentText("Date: "+default_subject)
            .setContentIntent(pIntent)
            .build();

    NotificationManager notificationManager = (NotificationManager) context
            .getSystemService(Context.NOTIFICATION_SERVICE);

    noti.flags |= Notification.FLAG_AUTO_CANCEL;

    notificationManager.notify(0, noti);

}

以下是SendMail.class中的内容

 public class SendMail extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

        sendMail();
}

public void sendMail() {

    Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts(
            "mailto", "somebody@gmail.com", null));
    emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Some Subject Text");
    startActivity(Intent.createChooser(emailIntent, "Send email..."));
 }
}

这是我的清单的内容     < ..... snipped header>               

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".SetPreferenceActivity"
        android:label="@string/app_name" >
    </activity>

    <receiver
        android:name=".AlarmReceiver"
        android:enabled="true"
        android:exported="true"
        android:label="MintBootReceiver"
        android:permission="android.permission.RECEIVE_BOOT_COMPLETED" >
        <intent-filter>
            <action android:name="android.intent.action.ACTION_BOOT_COMPLETED" />
            <action android:name="android.intent.action.BOOT_COMPLETED" >
                <action android:name="android.intent.action.QUICKBOOT_POWERON" />
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.HOME" />
                <category android:name="android.intent.category.LAUNCHER" />
                <category android:name="android.intent.category.DEFAULT" />
            </action>
        </intent-filter>
    </receiver>
</application>

0 个答案:

没有答案