BroadcastReceiver 中的可序列化附加内容



我正在开发一个带有警报功能的Android应用程序。

到目前为止一切顺利,我正在将本教程用于警报管理器,但是在使用 PendingIntents 时遇到了一些问题。

一切都很好,直到我尝试在我的意图上发送另一个 Extras 对象,当涉及到另一边时,对象(女巫实现可序列化类(为空。

这是我的代码:

Intent intent = new Intent(context, AlarmMedicBroadcastReceiver.class);
intent.setAction(AlarmeMedicamentoBroadcastReceiver.ACTION_ALARM);
intent.putExtra("alarm", dto); // <- My Object that extends Serializable
/* Setting 10 seconds just to test*/
Calendar cal = Calendar.getInstance();
cal.add(Calendar.SECOND, 10);
long tempo = cal.getTimeInMillis();
PendingIntent alarmIntent = PendingIntent.getBroadcast(context, dto.getId(), intent, 0);
AlarmManager alarme = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
    alarme.setExactAndAllowWhileIdle(AlarmManager.RTC_WAKEUP, tempo, alarmIntent);
} else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    alarme.setExact(AlarmManager.RTC_WAKEUP, tempo, alarmIntent);
} else {
    alarme.set(AlarmManager.RTC, tempo, alarmIntent);
}

在我的接收器类中:

@Override
public void onReceive(Context context, Intent intent) {
    if(ACTION_ALARM.equals(intent.getAction())){
        AlarmeMedicamentoDTO alarm = (AlarmeMedicamentoDTO) intent.getExtras().getSerializable("alarm");
        /*for this moment, alarm is null*/
        /*Other Stuff*/
        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(context, NOTIFICATION_CHANNEL_ID);
        notificationBuilder.setAutoCancel(true)
                .setDefaults(Notification.DEFAULT_ALL)
                .setWhen(System.currentTimeMillis())
                .setSmallIcon(R.mipmap.ic_launcher)
                .setTicker("Company name")
                //     .setPriority(Notification.PRIORITY_MAX)
                .setContentTitle("Alarme de Medicamento")
                .setContentText("Hora de tomar seu medicamento: " + alarm.getNomeMedicamento()) //<- Null Pointer Exception
                .setContentIntent(pendingIntent)
                .setContentInfo("Info");
        notificationManager.notify(1, notificationBuilder.build());
    }
}

提前致谢

您不能再将自定义对象作为"额外"添加到传递给AlarmManagerIntent中。在最新版本的Android中,AlarmManager尝试解压缩"额外内容",但它不知道如何解压缩您的自定义对象,因此这些对象将从"附加内容"中删除。您要么需要将自定义对象序列化为字节数组并将其放在"extras"中,要么将自定义对象存储在其他地方(文件,SQLite DB,静态成员变量等(。

您必须将

自定义对象包装在Bundle中:

捆绑包装:

Bundle bundle = new Bundle();
bundle.putSerializable("myObject", theObject);
intent.putExtra("myBundle", bundle); // <- Object that extends Serializable

从意图获取(在接收器中(:

Bundle bundle = intent.getBundleExtra("myBundle");
YourCustomClass theObject = (YourCustomClass) bundle.getSerializable("myObject"); 

YourCustomClass可以是实现Serializable的任何类

相关内容

  • 没有找到相关文章

最新更新