我正在尝试将我的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中给出的示例,我是新手。任何帮助将不胜感激。
答案 0 :(得分:3)
虽然@ tyczj的评论绝对正确,但它缺少一种解决方法。我将尝试在此答案中描述问题,原点和(临时)解决方法。
让我们先找出问题所在。在Band SDK内部的某个地方发生了这样的调用:
Intent service = new Intent("com.microsoft.band.service.action.BIND_BAND_SERVICE");
context.bindService(service, connections, flags);
创建隐式意图,它用于绑定服务。不幸的是,启动Android 5.0不再允许绑定到服务使用隐式意图(as described in the API changes here)。相反,意图应该是显式。
由于以上内容发生在混淆带SDK的深处,并且我们没有它的来源,因此“更新”代码以使用显式意图并非易事。如果你足够精明,你可以改变Java字节代码来做到这一点,但我想提出一个不同的解决方法:
由于bindService()
引发异常并且intent是其参数之一,我们可以覆盖该方法以确保提供的任何意图最终都是显式。
例如:下面的代码确保通过设置包名称使任何具有以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
了。我自己没有微软乐队,所以不能保证在此之后一切都会完全正常工作,但它至少应该解决你问题中提出的问题。
请注意,这只应被视为临时解决方法。正如其中一条评论所指出的,微软应该真正更新其SDK以符合Android 5+。这是唯一合适的解决方案。在那之前,希望这会有所帮助。
答案 1 :(得分: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);