从一周前开始,我就遇到了OneSignal的问题,当我的应用程序被杀死时,我点击通知就会做一些事情。经过研究,我发现我的问题是我没有使用NotificationExtenderService。
但我不知道该怎么实现。我所读到的是,这是作为一个类实现的,但我不明白--我需要用这个名称创建一个分离的文件类,还是在我的MainActivity中创建这个类?我也不知道该怎么做。
谢谢!
OneSignal
.startInit(MagHomeActivity.this)
.inFocusDisplaying(OneSignal.OSInFocusDisplayOption.Notification)
.unsubscribeWhenNotificationsAreDisabled(true)
.setNotificationReceivedHandler(new OneSignal.NotificationReceivedHandler() {
@Override
public void notificationReceived(OSNotification notification) {
final String notificationID = notification.payload.notificationID;
JSONObject tags = new JSONObject();
try {
MagServices service = MagApplication.getRetrofitAuth(MagHomeActivity.this)
.create(MagServices.class);
Call<ResponseBody> magazines = service.registerNotification(notificationID);
magazines.enqueue(new Callback<ResponseBody>() {
@Override
public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
}
@Override
public void onFailure(Call<ResponseBody> call, Throwable t) {
}
});
} catch (Exception e) {
e.printStackTrace();
}
}
})
.setNotificationOpenedHandler(new OneSignal.NotificationOpenedHandler() {
@Override
public void notificationOpened(OSNotificationOpenResult result) {
Intent intent = new Intent(MagHomeActivity.this,MagMyMessageActivity.class);
startActivity(intent);
}
})
.init();发布于 2019-06-13 23:01:06
您只需将其放在一个单独的文件中,专门用于该类。例如..。
NotificationExtenderExample.java
import android.support.v4.app.NotificationCompat;
import com.onesignal.OSNotificationPayload;
import com.onesignal.NotificationExtenderService;
import java.math.BigInteger;
public class NotificationExtenderExample extends NotificationExtenderService {
@Override
protected boolean onNotificationProcessing(OSNotificationReceivedResult receivedResult) {
OverrideSettings overrideSettings = new OverrideSettings();
overrideSettings.extender = new NotificationCompat.Extender() {
@Override
public NotificationCompat.Builder extend(NotificationCompat.Builder builder) {
// Sets the background notification color to Green on Android 5.0+ devices.
return builder.setColor(new BigInteger("FF00FF00", 16).intValue());
}
};
OSNotificationDisplayedResult displayedResult = displayNotification(overrideSettings);
Log.d("OneSignalExample", "Notification displayed with id: " + displayedResult.androidNotificationId);
return true;
}
}然后,将以下内容添加到AndroidManifest.xml中
<service
android:name=".YOUR_CLASS_NAME"
android:permission="android.permission.BIND_JOB_SERVICE"
android:exported="false">
<intent-filter>
<action android:name="com.onesignal.NotificationExtender" />
</intent-filter>
</service>https://stackoverflow.com/questions/56580587
复制相似问题