Android ADK 软件适用于 2.3.4 和 3.1+版本
我制作了一个可在 Android 2.3.4 中运行的 ADK 应用程序,但我需要让它也适用于平板电脑。既然 API 发生了变化,我该如何管理呢?
例如,2.3.4 中的方法是 getAccessory
,3.1 中的方法是 openAccessory
。
有什么建议吗?
I made an ADK app that works in Android 2.3.4, but I need to make it work with tablets as well. Since the API changes, how can I manage this?
For example in 2.3.4 the method is getAccessory
and in 3.1 is openAccessory
.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,方法调用没有不同。只有包名称是。 3.1 还支持 com.android.future.usb 包中包含的 API,因此如果您也针对 3.1 中的 Google Add-on API 进行编译,则相同的应用程序应该可以运行。如果您需要更多指导,请告诉我。
As far as I know, the method calls are not different. Only the package names are. 3.1 also supports the APIs contained in the com.android.future.usb package, so if you compile against the Google Add-on APIs in 3.1 as well, the same application should work. Let me know if you need more guidance.