英文:
Android Auto boot/connected receiver
问题
我目前正在开发用于Android Auto(汽车上的Android)的应用程序。我需要知道用户何时将手机连接到汽车上。是否有类似Intent.ACTION_POWER_CONNECTED的操作,我可以在我的应用程序代码中观察到它?
英文:
I'm currently developing app for Android Auto (Android for cars). I need to know when user connected phone to car. Is there any action like Intent.ACTION_POWER_CONNECTED, which I can observe in my application code?
答案1
得分: 0
你可以使用 Android for Cars App Library 中的 CarConnection
API。请注意,与库中的大多数其他 API 不同,您只需要一个 Context
而不是一个 CarContext
来调用此 API,因此它可以在 CarAppService
之外的地方使用。
英文:
You can use the CarConnection
API from the Android for Cars App Library. Note that, unlike most other APIs in the library, you just need a Context
and not a CarContext
to call this API, so it can be used outside of a CarAppService
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论