我在应用程序App#1中为操作字符串S注册了 BroadCastReceiver BCR 从应用程序App#2我使用正确的操作字符串 ( S )进行广播意图
如果应用程序App#2已经打开..onReceive()
从BCR接收到意图的含义被调用
@Override
public void onReceive(Context context, Intent intent) {
System.err.println("### ### MyBroadcastReceiver ### onReceive()");
如果App#2被强制关闭(来自 Setting-Applications)或从未打开(新重新启动的设备),具有相同操作字符串 ( S ) 的相同广播不会到达我的 broadCastReceiver BCR
广播意图的代码(注意没有标志..不知道它是否需要..&那个字符串是S)
String action = "customActionString.something";
Intent intent = new Intent(action);
context.sendBroadcast(intent);
我错过了什么?这是标签问题吗?