Android 5.0 IllegalArgumentException:服务意图必须明确:在com.google.android.location.internal.GoogleLocationManagerService.START上

时间:2014-12-04 05:32:28

标签: java android android-intent google-api android-5.0-lollipop

我试图在我的活动中检索调用 LocationClient connect 方法的设备的位置,但是当调用系统时崩溃时出现以下异常:

**FATAL EXCEPTION: main
Process: com.unipagossales, PID: 3833
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.unipagossales/com.unipagossales.app.merchants.MerchantFragmentActivity}: java.lang.IllegalArgumentException: Service Intent must be explicit: Intent { act=com.google.android.location.internal.GoogleLocationManagerService.START }
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2298)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2360)
    at android.app.ActivityThread.access$800(ActivityThread.java:144)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1278)
    at android.os.Handler.dispatchMessage(Handler.java:102)
    at android.os.Looper.loop(Looper.java:135)
    at android.app.ActivityThread.main(ActivityThread.java:5221)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:372)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
Caused by: java.lang.IllegalArgumentException: Service Intent must be explicit: Intent { act=com.google.android.location.internal.GoogleLocationManagerService.START }
    at android.app.ContextImpl.validateServiceIntent(ContextImpl.java:1674)
    at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1773)
    at android.app.ContextImpl.bindService(ContextImpl.java:1751)
    at android.content.ContextWrapper.bindService(ContextWrapper.java:538)
    at com.google.android.gms.internal.v.a(Unknown Source)
    at com.google.android.gms.internal.u.connect(Unknown Source)
    at com.google.android.gms.location.LocationClient.connect(Unknown Source)
    at com.unipagossales.app.merchants.MerchantFragmentActivity.onStart(MerchantFragmentActivity.java:122)
    at android.app.Instrumentation.callActivityOnStart(Instrumentation.java:1220)
    at android.app.Activity.performStart(Activity.java:5949)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2261)
    ... 10 more
**

这是我创建LocationClient的方式:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.merchant_activity);

    ...

    // Create a new global location parameters object
    locationRequest = LocationRequest.create();
    locationRequest.setInterval(Constants.UPDATE_INTERVAL_MILLISECONDS);
    locationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
    locationRequest.setFastestInterval(Constants.FAST_INTERVAL_CEILING_MILLISECONDS);

    // Initialize the location client
    locationClient = new LocationClient(this, new LocationClientConnectionCallbacks(), new LocationClientOnConnectionFailedListener());
}

@Override
protected void onStart() {
    super.onStart();
    ...
    locationClient.connect();
    ...
}

2 个答案:

答案 0 :(得分:3)

将目标SDK版本更改为“19”对我有所帮助。

答案 1 :(得分:1)

此问题与Android VM无法在运行时在Google Play服务中查找操作act=com.google.android.location.internal.GoogleLocationManagerService.START的定义有关。

您需要在下一个博客后设置Google Play服务:

http://mflerackers.wordpress.com/2014/09/09/noclassdeffounderror-for-googleplayservicesutil/

然后你需要在eclipse.ini中增加VM值,请遵循以下步骤:

Unable to execute dex: GC overhead limit exceeded in Eclipse

这应该抵押你的例外。