当前正在使用相同的活动时,从通知栏启动新活动

时间:2018-03-05 15:53:43

标签: java android android-intent android-pendingintent

我从通知中的按钮启动特定活动。如果我当前没有打开该特定活动,它将作为新活动启动活动。但是,当我打开该特定活动时,向下滚动通知然后单击该按钮,它将无效,因为活动已经打开。我需要将它作为一个新的打开,因为新的值将传递给它。我可以使用SharedPreferences来做到这一点,但我不愿意。请帮忙

        intent = new Intent(context,AppReport.class);
        intent.putExtra("name",packageInstallName); //this does not get send over
        intent.putExtra("version",packageInstallVersion);
        PendingIntent testing = PendingIntent.getActivity(context, 0, intent, Intent.FLAG_ACTIVITY_MULTIPLE_TASK);
        setOnClickPendingIntent(buttons[1],testing);

这是从通知栏启动活动的方式。我为标志尝试了FLAG_UPDATE_CURRENT,但也没有用。

1 个答案:

答案 0 :(得分:1)

将您的活动设为singleTop

<activity
        android:name=".AppReport"
        android:configChanges="screenSize|keyboard|orientation|screenSize"
        android:label="@string/app_name"
        android:launchMode="singleTop"
        android:screenOrientation="portrait"
        android:theme="@style/AppTheme.NoActionBar"
        android:windowSoftInputMode="stateHidden"/>

intent = new Intent(context,AppReport.class);
    intent.putExtra("name",packageInstallName); //this does not get send over
    intent.putExtra("version",packageInstallVersion);
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
    PendingIntent testing = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

在活动中覆盖onNewIntent(Intent intent)

@Override
protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);
    //Do your stuff
}