2012-05-11 9 views
3

ギャラリーから選択した画像を扱うアプリケーションがあります。しかし、そのようなスタックトレースを持つICSにクラッシュがあります:ギャラリーからの結果の配信に失敗しました

java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, Intent { dat=content://com.google.android.gallery3d.provider/picasa/item/5629933319233370946 }} to activity {com.myexample/com.myexample.activities.UserProfileActivity}: java.lang.NullPointerException 
at android.app.ActivityThread.deliverResults(ActivityThread.java:2980) 
at android.app.ActivityThread.handleSendResult(ActivityThread.java:3023) 
at android.app.ActivityThread.access$1100(ActivityThread.java:123) 
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1177) 
at android.os.Handler.dispatchMessage(Handler.java:99) 
at android.os.Looper.loop(Looper.java:137) 
at android.app.ActivityThread.main(ActivityThread.java:4424) 
at java.lang.reflect.Method.invokeNative(Native Method) 
at java.lang.reflect.Method.invoke(Method.java:511) 
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:787) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:554) 
at dalvik.system.NativeStart.main(Native Method) Caused by: java.lang.NullPointerException 
at java.io.File.fixSlashes(File.java:185) 
at java.io.File.(File.java:134) 
at com.jettaxi.activities.UserProfileActivity.onActivityResult(SourceFile:316) 
at android.app.Activity.dispatchActivityResult(Activity.java:4649) 
at android.app.ActivityThread.deliverResults(ActivityThread.java:2976) 
... 11 more 

は、私はそのようなバグに関するいくつかの情報を見つけたが、私はこの問題を回避し、どのようにできますか?

EDIT: 私のコード:

private void getImageFromGallery() { 
     Intent galleryIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI); 
     startActivityForResult(galleryIntent, GALLERY_PIC_REQUEST); 
} 

@Override 
protected void onActivityResult(int requestCode, int resultCode, Intent data) { 
    if (resultCode == RESULT_OK) { 
     if (requestCode == CAMERA_PIC_REQUEST) { 
      try { 
       captureFile = new File(getCaptureFilePath()); 
       captureUri = Uri.fromFile(captureFile); 

       Bitmap scaledBitmap = decodeFileAndResize(captureFile); 
       saveResizedAndCompressedBitmap(scaledBitmap); 

       Bitmap rotatedBitmap = convertToRotatedBitmap(scaledBitmap); 
       driverPhoto.setImageBitmap(rotatedBitmap); 

       if (rotatedBitmap != scaledBitmap) { 
        scaledBitmap.recycle(); 
        scaledBitmap = null; 
        System.gc(); 
       } 
      } catch (IOException e) { 
       BugSenseHandler.log(TAG, e); 
      } 
     } else if (requestCode == GALLERY_PIC_REQUEST) { 
      try { 
       captureFile = new File(getCaptureFilePath()); 
       captureUri = Uri.fromFile(captureFile); 

       Uri chosenUri = data.getData(); 

       String[] filePathColumn = {MediaStore.Images.Media.DATA}; 

       Cursor cursor = getContentResolver().query(chosenUri, filePathColumn, null, null, null); 
       cursor.moveToFirst(); 

       int columnIndex = cursor.getColumnIndex(filePathColumn[0]); 
       String filePath = cursor.getString(columnIndex); 
       cursor.close(); 

       File chosenFile = new File(filePath); 

       Bitmap selectedImageBitmap = decodeFileAndResize(chosenFile); 
       saveResizedAndCompressedBitmap(selectedImageBitmap); 
       driverPhoto.setImageBitmap(selectedImageBitmap); 
      } catch (IOException ie) { 
       BugSenseHandler.log(TAG, ie); 
      } 
     } 
    } 
} 

答えて

10

これは、SDカード上にない項目をリストからそれを防止することにより、役立つかもしれない:それはギャラリーに表示されますので、

galleryIntent.putExtra(Intent.EXTRA_LOCAL_ONLY, true); 
+0

あなたはsdカードにないアイテムにuriを得ることができないのであれば、どんな考えですか? – speedynomads

+0

メモとして、このフィールドにはAPIレベル11が必要です。 – Sandy

0

スタックトレースは、画像がPicasaのアルバムからのものであることを述べています。だからあなたはSDカードにファイルがありません。その場合、画像をロードするにはgetContentResolver().openInputStream(intent.getData())を使用してください。

+0

画像はSDカード上に存在し、そしてこの問題は、デバイスのいくつかの数で表示されます、まったくなし – skayred

+0

Picasaの画像をSDカードに保存する必要はありません。 Gallery3Dのソースコードを見てみましょう。だからあなたは、オンライン画像を指し示すURIを得るかもしれませんが、コンテンツプロバイダには存在しないファイルパスを求めています。 – Renard

+0

申し訳ありませんが、どうすればこのことを確認するのですか? – ChuckKelly

関連する問題