使用bundle将数据从非活动类传递到活动类

时间:2017-01-17 22:37:03

标签: android android-intent broadcastreceiver

我想将一个变量从我的broadcastreceiver类传递给另一个活动,但是应用程序总是崩溃。需要帮助。这是我的代码

广播接收器:

Bundle dataBundle = new Bundle();
dataBundle.putString("date", dateFormat);
Intent intent1 = new Intent(context, MapsActivity.class);

intent1.putExtras(dataBundle);

活动类:

Bundle extras = getIntent().getExtras();
String container = extras.getString("date");

date = container;

0 个答案:

没有答案