如何让我的相机应用程序在Android锁定屏幕上“快速启动”?
相机意图的文档似乎都集中在如何在相机应用程序中实现,该应用程序将拍摄单张照片并将其返回到调用应用程序。锁屏快速启动似乎是一个完全不同的用例,“返回图像”工作流程显然不适用。 (目前,我特别不想实现“返回一张照片”功能。)
感谢您的帮助。要么这看起来很难记录,要么我找不到正确的术语来搜索适当的文档。
答案 0 :(得分:1)
谢谢CommonsWare。你的评论最终导致我......
<intent-filter>
<action android:name="android.media.action.STILL_IMAGE_CAMERA" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>