Android OnNewIntent未被调用



我看到了几种方法,我尝试了所有方法,但都无法成功。我不知道为什么这么复杂,在文档中看起来很简单!我想用通知触发OnNewIntent(用户在通知栏中单击它)。

目前我已经将我的Activity设置为singleTop

<activity
    android:name="-.-.-.MainMenuActivity"
    android:launchMode="singleTop"
    android:screenOrientation="portrait" >
</activity>
这是我创建通知的代码:
public void showNotification(String text, String componentId){
    NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(this)
            .setSmallIcon(R.drawable.logo)
            .setContentTitle("Title")   
            .setAutoCancel(true)
            .setContentText(text);
    // Creates an explicit intent for an Activity in your app
    Intent resultIntent = new Intent(this, MainMenuActivity.class);
    if(!componentId.equalsIgnoreCase("")){                         
        resultIntent.putExtra("componentId", componentId);
    }   
    resultIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent resultPendingIntent = PendingIntent.getActivity(this, 0, resultIntent, 0);
    mBuilder.setFullScreenIntent(resultPendingIntent, false);
    mBuilder.setContentIntent(resultPendingIntent);
    NotificationManager mNotificationManager =
        (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    // mId allows you to update the notification later on.
    mNotificationManager.notify(0, mBuilder.build());
}

这是我的MainMenuActivity中的OnNewIntent方法:

@Override
protected void onNewIntent(Intent intent) {
    // TODO Auto-generated method stub
    super.onNewIntent(intent);
    setIntent(intent);
    ...
}

我从来没有接到OnNewIntent的电话。我不知道我做错了什么。我在整个应用程序中只使用2个活动,MainMenuActivity是在LoginActivity之后,所以MainMenuActivity应该总是在堆栈的顶部(我有更多的片段,我在MainMenuActivity中替换它们)。

任何帮助将不胜感激!谢谢大家。

Ok,张贴我的问题后不久就得到了它的工作。我认为我们代码中的关键区别在于我传递了"PendingIntent"标志。FLAG_UPDATE_CURRENT"到PendingIntent对象的创建/检索。这篇文章帮我找到了答案。

Notification.Builder mBuilder =
                new Notification.Builder(context)
                .setSmallIcon(R.drawable.notifyicon)
                .setContentTitle(title)
                .setContentText(extras.getString("message"))
                .setAutoCancel(true)
                .setOnlyAlertOnce(false)
                .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
                .setVibrate(new long[] {0,500,250,500});
        if(badgeCount > 1)
            mBuilder.setNumber(badgeCount);
        // Creates an explicit intent for an Activity in your app
        Intent resultIntent = new Intent(context, SiteViewActivity.class);
        resultIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
        resultIntent.putExtra(NOTIFY_INTENT_TYPE_KEY, alertType);
        PendingIntent resultPendingIntent = PendingIntent.getActivity(context, alertType, resultIntent, PendingIntent.FLAG_UPDATE_CURRENT);
        mBuilder.setContentIntent(resultPendingIntent);
        NotificationManager notifyMgr = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
        notifyMgr.notify(alertType, mBuilder.build());

首先,您应该将android:launchMode="singleTop"添加到清单文件中的活动定义中,如下所示

<activity
    android:name="MainActivity"
    android:launchMode="singleTop"
</activity>

然后像Hasan Masud说的那样,你应该像下面这样在你的动作中添加Intent.ACTION_MAINIntent.CATEGORY_LAUNCHER

Intent intent = new Intent(this, MainActivity.class);
intent.setAction(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);

。通过这种方式,如果应用是打开的,当你点击通知时,onNewIntent(..)方法会触发,但无论发生什么,如果应用是关闭的,当你点击通知时,通知意图会转到当前Activity的onCreate(..)方法

经过长时间的检查,我注意到Android 4.4 (Kitkat和可能更低)不会调用onNewIntent和onResume,如果你在pendingIntent上使用FLAG_UPDATE_CURRENT。一旦您将其更改为FLAG_ONE_SHOT,它将开始工作。然而,在Android 6(也可能是5)上,onNewIntent甚至可以使用FLAG_UPDATE_CURRENT标志。

然而,似乎如果你创建多个挂起的意图(例如收到两个通知后)的数据将不会与flag FLAG_ONE_SHOT更新,所以flag FLAG_CANCEL_CURRENT可能是一个更好的选择(它没有问题与未更新的数据)

相关内容

  • 没有找到相关文章