App A在其清单(在< application>内)中具有以下BroadcastReceiver:
而这个接收者:
public class RemoteControl extends BroadcastReceiver {
@Override
public void onReceive(Context context,Intent intent) {
Log.w(TAG,"Look what I did!");
}
}
我正在尝试通过App B触发此操作:
public void onClick(View v) {
Log.w(TAG,"Sending stuff");
Intent i = new Intent("app.a.remotecontrol");
i.setData("http://test/url");
sendBroadcast(i);
}
无论出于什么原因,即使从应用B广播,也不会触发应用A中的onReceive().这可能是什么原因?
编辑和解决方案:我忘记写在广播Intent之前使用过setData()了.确实存在问题:删除setData()后,广播便按预期工作.
最佳答案
最初,我忘记写在广播Intent之前使用过setData().确实存在问题:删除setData()后,广播便按预期工作.
原文链接:https://www.f2er.com/android/531531.html我已经改用Intent元数据使用putExtra()了:
Intent i = new Intent("app.a.remotecontrol");
i.putExtra("url","http://test/url");
sendBroadcast(i);