4

それらを受信できることはわかっていますがBroadcast OnReceive()、Onesignal が を作成するのを防ぐことはできませんNotification

4

1 に答える 1

7

OneSignalNotificationExtenderServiceクラスをセットアップし、それを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バックグラウンド データと通知のオーバーライドに関するドキュメントを参照してください。

于 2016-05-11T21:05:18.263 に答える