2

我正在尝试将我的 android 应用程序连接到 MS Band,但出现以下错误:

java.lang.IllegalArgumentException: Service Intent must be explicit: Intent { act=com.microsoft.band.service.action.BIND_BAND_SERVICE }

我使用的代码片段如下:

private View.OnClickListener mButtonConnectClickListener = new View.OnClickListener() {
    @Override
    public void onClick(View button) {

        pairedBands = BandClientManager.getInstance().getPairedBands();
        bandClient = BandClientManager.getInstance().create(getApplicationContext(), pairedBands[0]);

        // Connect must be called on a background thread.
         new ConnectTask().execute();
        }

};


private class ConnectTask extends AsyncTask<BandClient, Void, Void> {
    @Override
    protected Void doInBackground(BandClient... clientParams) {

            BandPendingResult<ConnectionResult> pendingResult = null;
        try {
            pendingResult = bandClient.connect();
        } catch (BandIOException e) {
            e.printStackTrace();
        }

        try {
            ConnectionResult result = pendingResult.await();
            if(result == ConnectionResult.OK) {

                BandConnection.setText("Connection Worked");

            } else {
                BandConnection.setText("Connection Failed");
            }
        } catch(InterruptedException ex) {
            // handle InterruptedException
        } catch(BandException ex) {
            // handle BandException
        }
        return null;
    }

    protected void onPostExecute(Void result) {

    }
}

我正在遵循Microsft Band SDK中给出的示例,我对此并不陌生。任何帮助将不胜感激。

4

2 回答 2

4

尽管@tyczj 的评论绝对正确,但它缺少解决方法。我将尝试在此答案中描述问题、其根源和(临时)解决方法。

让我们先找出问题所在。在 Band SDK 内部的某个地方,正在发生这样的调用:

Intent service = new Intent("com.microsoft.band.service.action.BIND_BAND_SERVICE");
context.bindService(service, connections, flags);

隐式意图被创建并用于绑定到服务。不幸的是,从 Android 5.0 开始,它不再允许绑定到使用隐式意图的服务(如此处的 API 更改中所述)。相反,意图应该是明确的。

由于上述情况发生在混淆带 SDK 的深处,而且我们没有它的源代码,因此“更新”代码以使用显式意图并非易事。如果您足够精明,您可能可以更改 Java 字节码来这样做,但我想提出一个不同的解决方法:

由于异常被抛出bindService()并且意图是它的参数之一,我们可以重写该方法以确保提供的任何意图最终都是显式的。

例如:下面的代码确保通过设置包名称来明确任何带有以com.microsoft.band(包括但不限于)开头的操作的意图。com.microsoft.band.service.action.BIND_BAND_SERVICE

ContextWrapper bandContextWrapper = new ContextWrapper(getApplicationContext()) {
    @Override public boolean bindService(Intent service, ServiceConnection conn, int flags) {
        final String action = service.getAction();
        if (!TextUtils.isEmpty(action) && action.startsWith("com.microsoft.band")) {
            service.setPackage("com.microsoft.band");
        }
        return super.bindService(service, conn, flags);
    }
};

您现在可以使用此包装器来拦截有问题的调用并更新意图(如果需要),方法是将其BandClientManager作为“上下文”传递给以启动服务。像这样:

bandClient = BandClientManager.getInstance().create(bandContextWrapper, pairedBands[0]);

现在你应该不再得到IllegalArgumentException. 我自己没有 Microsoft Band,所以不能保证在此之后一切都会完全正常,但它至少应该解决您问题中概述的问题。

请注意,这仅应被视为临时解决方法。正如其中一条评论所指出的,微软确实应该更新其 SDK 以符合 Android 5+。这是唯一正确的解决方案。在那之前,希望这会有所帮助。

于 2015-04-10T09:45:30.620 回答
0

如果有人使用 Xamarin.Android:

private class BandContextWrapper : ContextWrapper
{
    public BandContextWrapper(Context baseContext)
        : base (baseContext)
    {
    }

    public override bool BindService(Intent service, IServiceConnection conn, Bind flags)
    {
        var action = service.Action;
        if (!string.IsNullOrEmpty(action) && action.StartsWith("com.microsoft.band"))
        {
            service.SetPackage("com.microsoft.kapp");
        }
        return base.BindService(service, conn, flags);
    }
}

然后使用它:

var bandContextWrapper = new BandContextWrapper(Application.Context);
var client = BandClientManager.Instance.Create(bandContextWrapper, info);

在这里,我使用的是http://components.xamarin.com/view/microsoft-band-sdk

于 2015-04-12T19:52:39.893 回答