2011-02-09 138 views
1

我想借此對android.provider.MediaStore.ACTION_IMAGE_CAPTURE一個Intent照片,權限錯誤拍照

下榨季的結果與後裁剪時:

Intent intent = new Intent("com.android.camera.action.CROP"); 
intent.setClassName("com.android.camera", "com.android.camera.CropImage"); 

我按照sugestions在製作:調用作物的活動,我得到然而,當 Android: Crop an Image after Taking it With Camera with a Fixed Aspect Ratio

(已檢查logcat的輸出)權限錯誤,說是這樣的:

權限拒絕一個意圖訪問SD卡上的攝像頭活動創建的臨時圖像。

請問您能爲Android 2.2推薦一款解決方案嗎?

謝謝

+1

發佈logcat錯誤。 – 2011-02-09 15:24:38

回答

0

CGM,

你有

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

在你AndroidManifest.xml

這將需要修改SD卡上的東西。

+0

您好Willytale,我在AndroidManifest.xml中設置了以下權限: \t CGM 2011-02-09 16:05:46