私はGCMを実装しています。私のアプリには、 sayA
との 2 つのアクティビティがありB
ます。B
このコードを使用して、NotificationBarから起動しています。
long when = System.currentTimeMillis();
NotificationManager notificationManager =
(NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
String title = context.getString(R.string.app_name);
Notification notification = new Notification(R.drawable.app_notification_icon, "De Centrale", when);//message
Intent notificationIntent = new Intent(context, B.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP); //|Intent.FLAG_ACTIVITY_REORDER_TO_FRONT
PendingIntent intent = PendingIntent.getActivity(context, 0, notificationIntent, PendingIntent.FLAG_CANCEL_CURRENT);
notification.setLatestEventInfo(context, title, msg, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, notification);
NotificationBar はB
、「B-notification-intent」などのインテントでアクティビティを開きます。次に、[戻る] ボタンを使用してアクティビティを開き、新しいインテント (「BA-intent」など) を使用して起動A
します。以下のコードを使用します。B
B
A
intent = new Intent(this, B.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
startActivity(intent);
そして、新しいデータを取得B
します(つまり、画面B
が更新されます)。しかし、ホームボタンを押してから最近のアプリからアプリケーションを起動するB
と、「B-notification-intent」で古い画面が表示されます。代わりに、最新のインテント、つまり「BA-intent」が必要です。私はでこのコードを使用していますB
:
@Override
protected void onCreate(Bundle b)
{
fetchDataFromDB(getIntent());
}
@Override
protected void onNewIntent(Intent intent)
{
fetchDataFromDB(intent);
}
誰かが私の現在の画面(意図)を取得するのを手伝ってください。