我正在从应用程序 A 向应用程序 B 发送广播,应用程序 B 具有BroadCastReceiver
处理意图。
现在我onReceive
在 App B中进行了一些操作BroadcastReceiver
,然后我想将结果返回给 App A,以便我可以进行回调,如果结果为正则继续操作。
下面是一些代码。
在应用程序 B 中:
public class TripBackupReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context arg0, Intent arg1) {
System.out.println("broadcast Received");
// send result back to Caller Activity
}
}
在应用程序 A 中:
Intent intent = new Intent("a_specified_action_string");
sendBroadcast(intent);
任何人都可以解决这个问题,请指导我一些建议。谢谢!!