2013-05-03 12 views
6

こんにちは内のギャラリーでビットマップを開く方法を、以下にNullPointerExceptionは、私がギャラリーで画像を開きたいアンドロイド

Uri.parse(obj.getImageUrl() returns below string 

を/ mnt/SDカード/画像/ APP_IMAGES私のコード

mImageView.setImageBitmap(AppUtil.getBitmapFromFile(obj.getImageUrl(), 200, 200)); 

    mImageView.setOnClickListener(new OnClickListener() { 
     @Override 
     public void onClick(View view) { 
      Intent intent = new Intent(); 
      intent.setAction(Intent.ACTION_VIEW); 
      intent.setDataAndType(Uri.parse(obj.getImageUrl()), "image/*"); 
      startActivity(intent); 
     } 
    }); 

が、その示す図であります

更新/pro20130429_170323_-1793725321.tmp:私が試した今
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("file://sdcard/Pictures/app_images/pro20130429_170323_-1793725321.tmp")));

05-03 16:40:18.460: E/AndroidRuntime(4764): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=file://sdcard/Pictures/app_images/pro20130429_170323_-1793725321.tmp } 
+0

が重複する可能性を試すというエラーを取得5383797/open-an-image-uri-in-androids-default-gallery-image-viwer) –

答えて

4

は(http://stackoverflow.com/questions/ [Androidのデフォルトのギャラリー画像viwerにURIを使用して画像を開く]のこの1

Intent intent = new Intent(); 
intent.setAction(Intent.ACTION_VIEW); 
intent.setDataAndType(Uri.parse("file://" + "/sdcard/Pictures/app_images/pro20130429_170323_-1793725321.tmp"), "image/*"); 
startActivity(intent); 
+0

はい、動作しますが、しばらくして画像を表示しています – Raja

関連する問題