我正在尝试将字符串从广播接收器传递到警报活动,但不断收到空指针异常。
我检查了广播接收器中的值,并且与警报意图捆绑在一起的字符串不为空。
我将字符串附加到意图并像这样启动警报活动意图:
@Override
public void onReceive(Context context, Intent intent) {
Intent normalReminderIntent = new Intent(context.getApplicationContext(), ReminderAlarmActivity.class);
// Bundle information and add to the intent for use in the alarm notification
Bundle extras = new Bundle();
extras.putString("Title", title);
extras.putString("Description", description);
intent.putExtras(extras);
// Start the reminder activity
context.getApplicationContext().startActivity(normalReminderIntent);
}
然后在警报活动中,我做了意图获取额外内容,甚至设置了一个默认值,但我仍然得到空指针。我是这样做的:
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
setTheme(R.style.AppTheme_Dialog);
super.onCreate(savedInstanceState);
setContentView(R.layout.alarm_activity_reminder);
// Get the bundled info for title and description
Intent intent = getIntent();
String title = (String) intent.getExtras().getString("Title", "");
String description = (String) intent.getExtras().getString("Description", "");
}
查看getString方法,我不明白为什么我会得到一个空指针,而不是默认值:
public String getString(String key, String defaultValue) {
throw new RuntimeException("Stub!");
}
在这里搜索了许多问题后,我不确定为什么我通常会得到一个空指针。
提前感谢您的帮助
在onReceive中使用normalReminderIntent.putExtras
而不是intent.putExtras