我知道我可以在Broadcast
OnReceive()
收到它们,但我不能阻止Onesignal创造一个Notification
。
您将需要设置OneSignal NotificationExtenderService
类并将其作为AndroidManifest.xml
添加到您的Service
。
import com.onesignal.OSNotificationPayload;
import com.onesignal.NotificationExtenderService;
public class NotificationExtenderBareBonesExample extends NotificationExtenderService {
@Override
protected boolean onNotificationProcessing(OSNotificationReceivedResult receivedResult) {
// Read properties from result.
// Returning true tells the OneSignal SDK you have processed the notification and not to display it's own.
return true;
}
}
AndroidManifest.xml
<service
android:name=".NotificationExtenderBareBonesExample"
android:permission="android.permission.BIND_JOB_SERVICE"
android:exported="false">
<intent-filter>
<action android:name="com.onesignal.NotificationExtender" />
</intent-filter>
</service>
有关更多详细信息,请参阅OneSignal Android Background Data and Notification Overriding文档。