要从Activiy启动我的服务,请使用startService(MyService.class)
。这很好用,但在特殊情况下,服务应该以不同的方式启动。我想将一些参数传递给服务开始。
我在我的活动中尝试了以下内容:
Intent startMyService= new Intent();
startMyService.setClass(this,LocalService.class);
startMyService.setAction("controller");
startMyService.putExtra(Constants.START_SERVICE_CASE2, true);
startService(startMyService);
在我的服务中,我使用:
public class MyIntentReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals("controller"))
{
// Intent was received
}
}
}
IntentReceiver在onCreate()中注册如下:
IntentFilter mControllerIntent = new IntentFilter("controller");
MyIntentReceiver mIntentReceiver= new MyIntentReceiver();
registerReceiver(mIntentReceiver, mControllerIntent);
使用此解决方案,服务启动但未收到意图。 如何启动服务并传递参数?
感谢您的帮助!
答案 0 :(得分:25)
Intent serviceIntent = new Intent(this,ListenLocationService.class);
serviceIntent.putExtra("From", "Main");
startService(serviceIntent);
//and get the parameter in onStart method of your service class
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
Bundle extras = intent.getExtras();
if(extras == null) {
Log.d("Service","null");
} else {
Log.d("Service","not null");
String from = (String) extras.get("From");
if(from.equalsIgnoreCase("Main"))
StartListenLocation();
}
}
答案 1 :(得分:14)
第1步:删除BroadcastReceiver
实施。
步骤2:检查Intent
您的服务进入onStartCommand()
并通过getAction()
查看操作。