Android - 向通知添加意图

问题描述 投票:1回答:1

我是Android开发的新手,我仍然不太了解Intent。在这里我使用Firebase来创建通知,我在我的通知中添加了一个Intent,但是当我的应用程序处于前台时,我点击通知没有任何反应(当应用程序被杀或在后台运行良好时)。

奇怪的是它正在工作,当我点击通知时,我的“MainActivity”类的函数“onNewIntent”被调用,但现在没有任何事情发生了,我想我没有改变代码。

以下是我创建意图的方法:

Notifications notifs = new Notifications(this);
String title = remoteMessage.getData().get("title");
String body = remoteMessage.getData().get("body");
String url = remoteMessage.getData().get("url");

Intent intentNotif = new Intent(this, MainActivity.class);
intentNotif.setAction(Intent.ACTION_MAIN);
intentNotif.addCategory(Intent.CATEGORY_LAUNCHER);
intentNotif.putExtra("url", url);
intentNotif.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP);
//intentNotif.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);

notifs.showNotif(title, body, true, intentNotif);

以下是我如何向通知添加意图:

this.builderGeneric.setContentIntent(PendingIntent.getActivity(context, 1, intent, PendingIntent.FLAG_UPDATE_CURRENT));

我也试图用自定义动作创建一个意图,但它不起作用,我尝试了不同的意图标志,但我觉得我在不知道我做什么的情况下尝试随机的事情,所以这就是我要求你帮助的原因。

编辑:这是我如何创建通知,如果它有用:

Notifications(Context context) {
  this.context = context;

  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
    this.notifManager = context.getSystemService(NotificationManager.class);
    NotificationChannel channel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_LOW);
    channel.setDescription(CHANNEL_DESCRIPTION);
    channel.enableLights(false);
    channel.enableVibration(false);
    channel.setSound(null, null);
    if (this.notifManager != null) {
      this.notifManager.createNotificationChannel(channel);
    }
  } else {
    this.notifManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
  }

  this.builderGeneric = new Notification.Builder(context)
      .setVisibility(Notification.VISIBILITY_PUBLIC)
      .setWhen(System.currentTimeMillis())
      .setSmallIcon(R.mipmap.ic_launcher_round);

  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
    this.builderGeneric.setChannelId(this.CHANNEL_ID);
  }
  if (Build.VERSION.SDK_INT > Build.VERSION_CODES.LOLLIPOP) {
    this.builderGeneric.setSmallIcon(R.mipmap.ic_launcher_foreground);
  }
}

public void showNotif(String title, String text, boolean cancelable, Intent intent) {
  this.builderGeneric.setContentTitle(title)
      .setContentText(text)
      .setOngoing(!cancelable)
      .setContentIntent(PendingIntent.getActivity(context, 1, intent, PendingIntent.FLAG_UPDATE_CURRENT));

  Notification notifGeneric = this.builderGeneric.build();

  this.notifManager.notify(1, notifGeneric);
}

编辑2:这是我的清单:

<application
  android:allowBackup="true"
  android:fullBackupContent="@xml/backup_descriptor"
  android:icon="@mipmap/ic_launcher"
  android:label="@string/app_name"
  android:launchMode="standard"
  android:roundIcon="@mipmap/ic_launcher_round"
  android:supportsRtl="true"
  android:theme="@style/AppTheme">

  <activity
    android:name=".MainActivity"
    android:configChanges="orientation|screenSize">
    <intent-filter>
      <action android:name="android.intent.action.MAIN" />
      <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    <intent-filter>
      <action android:name="android.intent.action.VIEW" />
      <category android:name="android.intent.category.DEFAULT" />
      <category android:name="android.intent.category.BROWSABLE" />
    </intent-filter>
  </activity>

  <receiver
    android:name=".NetworkChangeReceiver"
    android:label="NetworkChangeReceiver">
    <intent-filter
      android:name=".NetworkIntentFilter"
      android:label="NetworkIntentFilter">
      <action
        android:name="android.net.conn.CONNECTIVITY_CHANGE"
        tools:ignore="BatteryLife" />
      <action android:name="android.net.wifi.WIFI_STATE_CHANGED" />
    </intent-filter>
  </receiver>

  <service android:name=".MyFirebaseService"
    android:exported="false">
    <intent-filter>
      <action android:name="com.google.firebase.MESSAGING_EVENT" />
    </intent-filter>
  </service>

</application>
android firebase android-intent notifications
1个回答
1
投票

好的,首先尝试删除

intentNotif.setAction(Intent.ACTION_MAIN);
intentNotif.addCategory(Intent.CATEGORY_LAUNCHER);

接下来,在AndroidManifest.xml中的activity标记中添加android:launchMode="singleTask"(也删除android:launchMode="standard")。

然后再试一次,请注意启动模式是singleTask,如果在MainActivity打开时单击通知 - > onNewIntent将被触发(因为Android不会再创建此活动的一个实例),否则将调用onCreate。

如果它有效,我想建议您阅读有关LaundMode here的更多信息

© www.soinside.com 2019 - 2024. All rights reserved.