null
当我将数据从活动传递到广播接收器时,我总是获得捆绑价值。我的接收器将在启动时启动。
这是我的活动课程中的代码
Intent intent= new Intent();
intent.setAction("android.intent.action.BOOT_COMPLETED");
intent.putExtra("test", "test");
sendBroadcast(intent);
这是我的接收器类中的代码:
String testValue = intent.getStringExtra("test");