フォアグラウンドにあるアクティビティがあり、アプリ内で別のアクティビティに移動した場合、転送を開始するときにフラグを設定し、新しいアクティビティに転送したときにそれをワイプすることで、これを検出できます。これにより、内部(フラグが設定されている)イベントまたは外部(フラグが設定されていない)イベントによるアクティビティonPauseを区別できます。
ただし、通知に埋め込まれたPendingIntentsに対してこれを行うのに問題があります。通知バーで作成した通知を選択したために、アクティビティがonPausedになっていることを検出できますか?通知が発生し、アクティビティを一時停止する保留中のインテントが実行される前にトリガーされる、使用できる通知リスナーの種類はありますか?
これがやや紛らわしいことを理解しているので、問題を示すスケルトンプロジェクトを作成しました。
package com.example.notificationtest;
import android.os.Bundle;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.view.View;
public class MainActivity extends Activity {
private static final int INCOMING_NOTIFICATION_ID = 1;
private static final String TAG = "NotificationTest";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public void onPause() {
super.onPause();
Log.e(TAG,"onPause");
}
@Override
public void onResume() {
super.onResume();
Log.e(TAG,"onResume");
}
public void onTransitionButtonClick(View view) {
Intent intent = new Intent(this, MainActivity.class);
Log.e(TAG,"About to start activity: onPause will be invoked.");
startActivity(intent);
}
public void onNotificationButtonClick(View view) {
Intent intent = new Intent(this, MainActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
Notification notification = new Notification(android.R.drawable.alert_dark_frame, "Alert!", System.currentTimeMillis());
notification.defaults |= Notification.DEFAULT_SOUND;
notification.defaults |= Notification.DEFAULT_VIBRATE;
notification.defaults |= Notification.DEFAULT_LIGHTS;
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notification.flags |= Notification.FLAG_INSISTENT;
notification.setLatestEventInfo(this, "Click to open", "Click to open", pendingIntent);
// Show the alert.
final NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(INCOMING_NOTIFICATION_ID, notification);
}
}
activity_main.xmlを使用する場合:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/notify_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/padding_medium"
android:text="Make a notification"
android:onClick="onNotificationButtonClick"
tools:context=".MainActivity" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/notify_button"
android:padding="@dimen/padding_medium"
android:text="Normal transition"
android:onClick="onTransitionButtonClick"
tools:context=".MainActivity" />
</RelativeLayout>
「通常の遷移」ボタンを選択すると、ログに「アクティビティを開始しようとしています:onPauseが呼び出されます」と出力されます。onPauseの前。
[通知を行う]ボタンを選択し、通知バーを下にドラッグして通知をタップすると、onPauseの前にそのタップの通知が届くので、同じ行を挿入できます。「アクティビティを開始しようとしています:onPauseは呼び出されました。」どうやってやるの?