使可用于锁屏快速启动相机应用程序?应用程序、快速启动、相机、可用于

由网友(流星是天使的眼泪)分享简介:如何才能提供快速启动Android的锁屏上?How can I make my camera app available for "quick launch" on the Android lock screen?摄像机意图的文档似乎都集中于如何在相机应用,将采取单一的照片,并将其返回给调用应用程序中实现。锁屏快速...

如何才能提供快速启动Android的锁屏上?

How can I make my camera app available for "quick launch" on the Android lock screen?

摄像机意图的文档似乎都集中于如何在相机应用,将采取单一的照片,并将其返回给调用应用程序中实现。锁屏快速启动似乎是一个完全不同的使用情况,以及返回一个形象的工作流程显然将不适用。 (现在,我特别不希望实施回归一张照片功能。)

The documentation for camera intents seems to all be focused on how to implement in a camera app which will take a single photo and return it to the calling application. The lock screen quick launch seems like a totally different use case, and the "return an image" workflow obviously would not apply. (For now, I specifically don't want to implement the "return one photo" functionality.)

感谢您的帮助。无论这似乎记录不完整,或者我无法弄清楚正确的术语来搜索正确的文件。

Thanks for any help. Either this seems poorly documented, or I can't figure out the proper terms to search for the proper documentation.

推荐答案

感谢您CommonsWare。您的评论最终导致我...

Thank you CommonsWare. Your comment eventually led me to...

<intent-filter>
  <action android:name="android.media.action.STILL_IMAGE_CAMERA" />
  <category android:name="android.intent.category.DEFAULT" />
</intent-filter>
阅读全文

相关推荐

最新文章