假设有一个应用程序。" myapp"。
在单独的过程中提供服务。" myservice"。
过程=":为MyService&#34 ;.
分离服务中的第二项服务。 " secondservice&#34 ;.
process=":myservice".
两个服务是
exported =" true"。
inputPinCodeIntent = new Intent(context, EnterCodeActivity.class);
inputPinCodeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(inputPinCodeIntent);
在EnterCodeActivity中获取代码并使用
Messenger messenger = new Messenger();
messenger.send(m);
向" secondservice"发送消息。 但是没有得到消息。 我正在运行像
这样的服务final Intent serviceIntent = new Intent(this, PincodeCreditionalInput.class);
bindService(serviceIntent, serviceConnection, BIND_AUTO_CREATE);
in" onStart"事件。 有人可以帮忙吗?
感谢。