0

我想要一个广播接收,当用户在本机相机上拍照时,我截取了这张照片。

使用此代码:

<receiver android:name=".PictureReceiver" >
    <intent-filter android:priority="10000" >
        <action android:name="android.intent.action.CAMERA_BUTTON" />

        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</receiver>

当用户拍照时,PictureReceiver 被激活,但我不知道如何或是否可以拍照

4

1 回答 1

0

当用户拍照时,没有可用于过滤动作的广播动作。

检查链接http://developer.android.com/reference/android/content/Intent.html#ACTION_CAMERA_BUTTON,只有“android.intent.action.CAMERA_BUTTON”可用于检测按下的“相机按钮”。

于 2013-06-12T06:44:15.143 回答