我使用的Intent在用户单击推送通知时启动。我在通过待定意图传递额外内容时遇到一些问题。当我这样做时:
Intent i = new Intent(this, DashboardActivity.class);
i.putExtra("pending", true);
i.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
PendingIntent pendingIntent = PendingIntent.getActivity(this,0,i,PendingIntent.FLAG_UPDATE_CURRENT);
我希望这种行为:
待处理的意图启动DashboardActivity
在DashboardActivity内部,我检查其他功能
如果我有其他活动,请参加活动B
相反,发生的是:
待处理的意图启动DashboardActivity
额外内容为空
这是检查DashboardActivity附加功能的代码:
if (getIntent().getExtras() != null) {
Intent i = new Intent(DashboardActivity.this, B.class);
startActivity(i);
}
我不知道如何退出这种情况,所以如果有人可以帮助我,我将不胜感激!
编辑:
private void sendNotification(String messageBody){
String id="",message="",title="";
if(type.equals("json")) {
try {
JSONObject jsonObject = new JSONObject(messageBody);
id = jsonObject.getString("id");
message = jsonObject.getString("message");
title = jsonObject.getString("title");
} catch (JSONException e) {
// }
}
}
else if(type.equals("message"))
{
message = messageBody;
}
Intent i = new Intent(this, DashboardActivity.class);
i.putExtra("pending", true);
i.setFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
i.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this,0,i,PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder notificationBuilder=new NotificationCompat.Builder(this);
notificationBuilder.setContentTitle(getString(R.string.app_name));
notificationBuilder.setContentText(message);
Uri soundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
notificationBuilder.setSound(soundUri);
notificationBuilder.setSmallIcon(R.mipmap.ic_launcher);
notificationBuilder.setLargeIcon(BitmapFactory.decodeResource(this.getResources(),R.mipmap.ic_launcher));
notificationBuilder.setAutoCancel(true);
Vibrator v = (Vibrator) this.getSystemService(Context.VIBRATOR_SERVICE);
v.vibrate(1000);
notificationBuilder.setContentIntent(pendingIntent);
NotificationManager notificationManager=(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0,notificationBuilder.build());
}
最佳答案
尝试使用PendingIntent.FLAG_UPDATE_CURRENT
。
还要添加Intent.FLAG_ACTIVITY_SINGLE_TOP
,以便如果您的活动已经打开,则不会重新创建它。
将以上两个标志添加到您的意图中。
同样在您的DashboardActivity中实现onNewIntent
@Override
public void onNewIntent(Intent intent){
Bundle extras = intent.getExtras();
if(extras != null){
if(extras.containsKey("pending"))
{
}
}