在广播中,我想从服务 XYZ 调用非静态方法。该服务由接收器在启动时启动。有人想从这个正在运行的服务中运行方法吗?这个论坛中的一个解决方案是使方法静态并使用单例模式来执行。但是还有其他方法吗?也许用活页夹?
//编辑例如我有以下分类:
public class MyService extends Service{
.....
public void method(){
//TODO
}
}
public class MyBroadcastReceiver extends BroadcastReceiver{
.....
public void onReceive(Context context, Intent intent) {
String intentAction=intent.getAction();
if(intentAction.equals(Intent.ACTION_BOOT_COMPLETED)){
//start service
Intent serviceIntent = new Intent(context, MyService.class);
context.startService(serviceIntent);
}
else{
//TODO call method() in MyService
}
}
我该如何调用该方法method()
?我知道我可以使用context.getSystemService()
系统服务进行投射。但是我怎样才能得到我自己的服务对象呢?
问候