正如您在我的代码中看到的那样,我正在通过 Bundle 传递值。
现在,我希望它在另一个活动中的价值onCreate()
。我尝试它来获取它的值,但它显示 nullpointerexception。
请帮我解决问题。
Bundle bundle = new Bundle();
String url = "http://www.google.com";
bundle.putString("url", url);
Intent myIntent = new Intent(context, NotificationService.class);
myIntent.putExtras(bundle);
context.startService(myIntent);
获取价值代码:
if (!getIntent().getExtras().getString("url").contains(null)) {
// Do something
}