当我尝试从其他应用程序(例如信使)打开相机时,我想在选择框中看到我的相机应用程序。 我怎样才能捕捉相机的意图?
答案 0 :(得分:0)
对您的相机活动设置<intent-filter>
,例如:
<intent-filter>
<action android:name="android.media.action.IMAGE_CAPTURE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
并按照the documented rules for the ACTION_IMAGE_CAPTURE
protocol的其余部分进行操作(例如EXTRA_OUTPUT
)。