我正在学习如何在Android设备上处理OneSignal推送通知。问题是,当应用程序关闭时,当我收到通知时,即使我定义了必要的功能(我猜)它仍会打开“启动活动”,它在清单中定义为MAIN LAUNCHER。我需要用其中的有效负载数据打开一个不同的活动。我在创建这些代码时引用的链接是this,我在this answer上看到了引用。我只显示相关代码,因为该项目已被分类。
这是我的清单文件。
<application
android:name="packageName.CustomAppName"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<meta-data android:name="com.onesignal.NotificationOpened.DEFAULT"
android:value="DISABLED"/>
<activity
android:name="anotherPackageName.SplashActivity"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="anotherPackageName.PaymentActivity"
android:screenOrientation="portrait" />
<service
android:name="somepackagename.NotificationsForPayment"
android:exported="false"
android:permission="android.permission.BIND_JOB_SERVICE">
<intent-filter>
<action android:name="com.onesignal.NotificationExtender" />
</intent-filter>
</service>
</application>
这是我定义OneSignal服务的应用程序类。
public class CustomAppName extends Application {
private static CustomAppName instance;
public static CustomAppName getInstance() {
return instance;
}
public void onCreate() {
super.onCreate();
OneSignal.startInit(this)
.setNotificationOpenedHandler(new CustomNotificationOpening())
.init();
instance = this;
}
}
这是我的CustomNotificationOpening类。
public class CustomNotificationOpening implements OneSignal.NotificationOpenedHandler {
@Override
public void notificationOpened(OSNotificationOpenResult notification) {
notification.notification.payload.additionalData.names();
JSONObject data = notification.notification.payload.additionalData;
Intent intent = new Intent(CustomAppName.getInstance(), PaymentActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT | Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra("paymentModel", data);
CustomAppName.getInstance().startActivity(intent);
}
这是我的NotificationsForPayment类,它从NotificationExtenderService扩展。
public class NotificationsForPayment extends NotificationExtenderService {
@Override
protected boolean onNotificationProcessing(OSNotificationReceivedResult notification) {
NotificationExtenderService.OverrideSettings overrideSettings = new NotificationExtenderService.OverrideSettings();
overrideSettings.extender = new NotificationCompat.Extender() {
@Override
public NotificationCompat.Builder extend(NotificationCompat.Builder builder) {
// Sets the background notification color to Red on Android 5.0+ devices.
Bitmap icon = BitmapFactory.decodeResource(CustomAppName.getInstance().getResources(),
R.drawable.ic_os_notification_fallback_white_24dp);
builder.setLargeIcon(icon);
return builder.setColor(new BigInteger("FF0000FF", 16).intValue());
}
};
OSNotificationDisplayedResult displayedResult = displayNotification(overrideSettings);
}
我真的不知道我在哪里做错了。当应用程序打开时,当我单击通知时,我可以看到“notificationOpened”函数正在触发。但是当它关闭时,由于我无法调试程序并且通知打开了启动活动,我知道我的时间是问这个问题,因为我找到的答案都没有。在应用程序关闭时,有没有办法用通知中的特定数据打开其他活动?感谢任何帮助,非常感谢你。
答案 0 :(得分:0)
找到错误的位置。
<meta-data android:name="com.onesignal.NotificationOpened.DEFAULT"
android:value="DISABLED"/>
该值应该是“DISABLE”,而不是“DISABLED”。