通知クリック:アクティビティは既に開いています


164

クリックすると特定のアクティビティを開く通知のあるアプリケーションがあります。通知をクリックして、アクティビティが既に開かれている場合、それは再開されに前面に表示されます。

フラグFLAG_ACTIVITY_BROUGHT_TO_FRONTまたはFLAG_ACTIVITY_REORDER_TO_FRONTでそれを行うことができると思ったが、それはそれを再び開き続けるので、私は2回のアクティビティを持っています。

これは私のコードです:

event_notification = new Notification(R.drawable.icon,
            mContext.getString(R.string.event_notif_message), System.currentTimeMillis()); 
Intent notificationIntent = new Intent(mContext, EventListActivity.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
sendNotification(event_notification, notificationIntent, mContext.getString(R.string.event_notif_title),
                body, Utils.PA_NOTIFICATIONS_ID);

フラグでそれを管理できますか、それとも、SharedPreferencesに変数を格納して、開いているかどうかを確認する必要がありますか?

ありがとう!


1
私はintent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_NO_HISTORY);を使用しています。
2017年

回答:


298

開始するのlaunchMode属性を設定する必要がありActivityますsingleTop。これにより、既存のインスタンスActivityが既にタスクのスタックの最上位にある場合、新しいインスタンスを開始するのではなく、既存のインスタンスにインテントが配信されます。

これはandroid:launchMode="singleTop"<activity>要素に追加することによってマニフェストで行われます。最新のインテントにアクセスするには(インテントとともに渡された可能性のあるデータに興味がある場合)、でオーバーライドonNewIntent()しますActivity


6
意図の旗をさまざまなものに設定すると言った多くの答えに出会いました。これは機能しませんでした。これは、フラグに関係なく、意図が新しく作成されたアクティビティに移動するためですか?DevunwiredがlaunchMode属性はインテントが配信される場所を変更すると言ったので、私は尋ねます。
lululoo 2013年


1
ホーム画面から起動されるアクティビティでこのアプローチを使用すると、アプリケーションを起動するたびにルートアクティビティから開始され、以前に上部に表示されていたアクティビティがすべて破棄されることがわかります。これは、ユーザーが別のアクティビティでバックグラウンドでアプリを開いて再度開く場合に予想される動作ではありません。
ドイツ語

38

Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP代わりにフラグを設定してみてください。

FLAG_ACTIVITY_CLEAR_TOP(強調鉱山)のドキュメントから:

設定されていて、起動されているアクティビティが現在のタスクで既に実行されている場合、そのアクティビティの新しいインスタンスを起動する代わりに、その上にある他のすべてのアクティビティが閉じられ、このインテントが(今は上)新しいインテントとしての古いアクティビティ。

たとえば、アクティビティA、B、C、Dで構成されるタスクを考えてみます。DがアクティビティBのコンポーネントに解決されるインテントでstartActivity()を呼び出すと、CとDは終了し、Bは指定されたインテントを受け取ります、結果としてスタックはA、Bになります。

上記の例で現在実行中のアクティビティBのインスタンスは、ここで開始する新しいインテントをonNewIntent()メソッドで受け取るか、それ自体が終了して新しいインテントで再起動されます。起動モードが「複数」(デフォルト)であると宣言していて、同じインテントでFLAG_ACTIVITY_SINGLE_TOPを設定していない場合、終了して再作成されます。他のすべての起動モードの場合またはFLAG_ACTIVITY_SINGLE_TOPが設定されている場合、このインテントは現在のインスタンスのonNewIntent()に配信されます。


1
これは私が必要としたものです。このフラグをインテントに追加するために必要な説明を追加するだけですnew Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP)
Morteza Rastgoo 16

6

onNewIntent()通知クリックからの新しいデータを処理し、アクティビティを更新するために使用します。

onNewIntent(新しい通知によって提供)新しい意図から新しいデータを取得し、例えば、それらをキャッチ:

title = intent.getStringExtra("title")

onCreate、以前に:)

現在のアクティビティを新しい通知データで更新します。

このチュートリアルに従うこともできます


3
Notification.Builder mBuilder =
            new Notification.Builder(this)
            .setSmallIcon(R.drawable.cmplayer)
            .setContentTitle("CoderoMusicPlayer")
            .setContentText("PLayer0!");

    Intent resultIntent = new Intent(this, 

    AndroidBuildingMusicPlayerActivity.class);
        resultIntent.setAction(Intent.ACTION_MAIN);
        resultIntent.addCategory(Intent.CATEGORY_LAUNCHER);

        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
                resultIntent, 0);

        mBuilder.setContentIntent(pendingIntent);
        NotificationManager mNotificationManager =
            (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
        mNotificationManager.notify(1, mBuilder.build());

コードをコピーして、メインのランチャーアクティビティに貼り付けるだけです。

ここに元の答えがあります


0

私はあなたがそれを機能させるためにいくつかのロジックを追加する必要があると思います、これはおそらく助けることができます:

たとえば、APPのスプラッシュスクリーン(ランチャーとメイン)があります。

public class SplashScreen extends AppCompatActivity {
    private final int TIME_OUT = 2000;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_splash_screen);

        // Suscribirse al tema Notificaciones
        FirebaseMessaging.getInstance().subscribeToTopic("NOTA");
        if (getIntent().getExtras() != null) {
            if (getIntent().getExtras().size()>1){
                Intent home_activity = new Intent(getApplicationContext(), Home.class);
                home_activity.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                if (getIntent().getExtras() != null) {
                    for (String key : getIntent().getExtras().keySet()) {
                        String value = "" + getIntent().getExtras().getString(key);
                        Log.d("TAG", key + "=" + value);
                        switch (key) {
                            case "url":
                                home_activity.putExtra("url", value);
                                break;
                        }
                    }
                }
                startActivity(home_activity);
                finish();

            }else{
                new Handler().postDelayed(new Runnable() {
                    @Override
                    public void run() {
                        try {
                            Intent home_activity = new Intent(getApplicationContext(), Home.class);
                            home_activity.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                            startActivity(home_activity);
                            finish();
                        } catch (Exception ex) {
                            ex.printStackTrace();
                        }
                    }
                }, TIME_OUT);
            }


        } else {
            new Handler().postDelayed(new Runnable() {
                @Override
                public void run() {
                    try {
                        Intent home_activity = new Intent(getApplicationContext(), Home.class);
                        home_activity.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                        startActivity(home_activity);
                        finish();
                    } catch (Exception ex) {
                        ex.printStackTrace();
                    }
                }
            }, TIME_OUT);
        }

    }

}

そして私のFirebaseServiceで私は次のことをしました:

public class FCMessagingService extends FirebaseMessagingService {

    private final String TAG = "PUSH";
    private String body = "";
    private static String _url = "";
    private static int numMessage = 0;

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        super.onMessageReceived(remoteMessage);

        String from = remoteMessage.getFrom();
        Log.d(TAG, "Mensaje recibido de: " + from);

        if (remoteMessage.getNotification() != null) {
            Log.d(TAG, "Notificación: " + remoteMessage.getNotification().getBody());

            if (remoteMessage.getData().size() > 0) {
                Log.d(TAG, "Data: " + remoteMessage.getData());
                try {
                    JSONObject data = new JSONObject(remoteMessage.getData());
                    String url = data.getString("url");
                    Log.d(TAG, "onMessageReceived: \n" + "Extra Information: " + url);
                    this._url = url;
                    Log.d("_URL",_url);
                    mostrarNotificacion(remoteMessage.getNotification().getTitle(), remoteMessage.getNotification().getBody());
                    mensaje(url, remoteMessage.getNotification().getTitle(), remoteMessage.getNotification().getBody());
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }
        }



    }


    private void mensaje(String url, String title, String body){
        boolean acti =  Util.comprobarActivityALaVista(getApplicationContext(), "com.dev.android.subagan.MainActivity");
        if(acti){

            Intent imain = new Intent(MainActivity.URL);

            imain.putExtra("key_url",url);
            imain.putExtra("key_title",title);
            imain.putExtra("key_body",body);

            LocalBroadcastManager.getInstance(getApplicationContext()).sendBroadcast(imain);

        }else{

            Intent ihome = new Intent(Home.URL);

            ihome.putExtra("key_url",url);
            ihome.putExtra("key_title",title);
            ihome.putExtra("key_body",body);
            LocalBroadcastManager.getInstance(getApplicationContext()).sendBroadcast(ihome);

        }

    }




    private void mostrarNotificacion(String title, String body) {

        final int NOTIFICATION_ID = 3000;

        Intent intent = new Intent(this, MainActivity.class);
        intent.putExtra("url",_url);
        intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);


        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent,PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_ONE_SHOT  );



        Uri soundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);

        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle(title)
                .setContentText(body)
                .setAutoCancel(true)
                .setSound(soundUri)
                .setTicker(body)
                .setContentIntent(pendingIntent);

        NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        notificationManager.notify(0, notificationBuilder.build());

    }

}

0
Intent intent = new Intent(this, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent contentIntent = PendingIntent.getActivity(this, new Random().nextInt(), intent, 0);

4
質問で言及されている問題の解決にコードがどのように役立つかを説明してください。これは、同じ/類似の問題に直面している他の読者には明らかでない場合があります。
NOhs
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.