それらを受信できることはわかっていますがBroadcast
OnReceive()
、Onesignal が を作成するのを防ぐことはできませんNotification
。
質問する
3826 次
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 に答える