Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使我的相机应用程序可用于在 Android 锁定屏幕上“快速启动”?
相机意图的文档似乎都集中在如何在相机应用程序中实现,它将拍摄一张照片并将其返回给调用应用程序。锁屏快速启动似乎是一个完全不同的用例,“返回图像”工作流程显然不适用。(目前,我特别不想实现“返回一张照片”功能。)
谢谢你的帮助。要么这似乎记录得很差,要么我无法找出合适的术语来搜索合适的文档。
谢谢CommonsWare。你的评论最终让我...
<intent-filter> <action android:name="android.media.action.STILL_IMAGE_CAMERA" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter>