2

在广播中,我想从服务 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()系统服务进行投射。但是我怎样才能得到我自己的服务对象呢?

问候

4

1 回答 1

5

您可以setAction在启动Service. 在您的服务中onStartcommand,您可以提取意图的操作,并在此基础上执行您的服务中的方法。

您将始终使用startService此命令向您的服务发送命令,这不会启动您的服务两次。它要么启动一次,要么将新意图发送到服务。

因此,在您的启动完成部分中,您应该将意图操作设置为您想要的任何内容,然后启动服务 - 您可以完全删除 else 块。

在您的服务实现中onStartCommand,提取意图的操作,并根据该操作执行您的方法。

于 2013-01-15T19:30:50.247 回答