我有一个包含一些服务类的 jar 文件。jar 被放置在 Android 的框架中。我想在应用程序中绑定到该服务。目前我正在使用这个:
Intent intent = new Intent(IMyAidl.class.getName());
boolean returnvalue = mContxt.bindService(intent,connection, Context.BIND_AUTO_CREATE);
System.out.println("Binding to service in jar are not " + returnvalue);
当我使用上面的代码时,我根本无法绑定。每次false
都是返回值。我不明白为什么它返回错误。
有人可以帮忙吗?