我的搜索没有让我找到任何解决方案,也许更简单的东西让我的代码无法正常工作。
我的活动 javapage 在 OnCreate 中包含此内容:
Intent MyCountryCodeIntent = new Intent(this,OutgoingCallReceiver.class);
MyCountryCode = "01";
MyCountryCodeIntent.putExtra("code",MyCountryCode);
即使我设置startActivity(MyCountryCodeIntent);
或sendBroadcast(MyCountryCodeIntent);
这个应用程序挂起
我的 OutgoingCallReceiver.class 页面在 onReceive 中包含此内容:
Bundle bundle = intent.getExtras();
if(null == bundle) return;
String MyCountryCodeIntent=intent.getStringExtra("code");
也许出了点问题,但我不知道是什么..