我使用Realm作为ORM来管理Android应用程序中的数据库,一切都很好。但是当我捕获推送通知然后我尝试使用Realm保存通知数据时会发生错误。 以下是错误:
java.lang.IllegalStateException: Realm access from incorrect thread. Realm objects can only be accessed on the thread they were created.
这是我从FirebaseMessagingService扩展的类:
public class SMovilFirebaseMessagingService extends com.google.firebase.messaging.FirebaseMessagingService {
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
super.onMessageReceived(remoteMessage);
if (remoteMessage.getNotification() != null)
{
saveDataNotification(remoteMessage.getData().get("resourceId"), remoteMessage.getNotification().getTitle());
showNotification(remoteMessage.getNotification().getTitle(), remoteMessage.getNotification().getBody());
}
}
private void showNotification(String title, String body) {
Intent intent = new Intent(this, Home.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);
Uri soundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle(title)
.setContentText(body)
.setAutoCancel(true)
.setSound(soundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, notificationBuilder.build());
}
private void saveDataNotification(String resourceId, String message){
Realm realm = Realm.getDefaultInstance();
realm.beginTransaction();
Notifications notification = realm.createObject(Notifications.class, setUniqueId(realm));
notification.setMessage(message);
notification.set_state("1");
notification.set_linkResource(resourceId);
realm.commitTransaction();
}
}
这是我初始化Realm的类,这个类从Application扩展而BaseApplication是我的应用程序的名称:
public class BaseApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Realm.init(this);
RealmConfiguration config = new RealmConfiguration.Builder().build();
Realm.setDefaultConfiguration(config);
}
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}
}
这是我的文件在项目中的位置:
我需要使用Realm将收到的信息保存在我的数据库中,但此错误会出现在此非活动文件中。
希望你能帮助我。 问候。答案 0 :(得分:1)
当您收到推送通知时,无论您是否打开了活动/应用程序,Android操作系统都会启动您的FirebaseMessagingService。这意味着你不只是在一个不同的线程中,你完全在一个不同的过程中。
因此,您必须通过Intent将数据发送到活动/应用程序进程。通常,就像您的情况一样,最好通过将整个RemoteMessage作为Intent中的Extra发送,类似于您已经使用PendingIntent进行通知。
然后你必须处理(主页)活动中的传入意图。