ギャラリーからImageView
に写真を追加しようとしていますが、このエラーが表示されます。
Java.lang.RuntimeException:結果ResultInfo {who = null、request = 1、result = -1、data = Intent {dat = content:// media/external/images/media/1}}をアクティビティ{hotMetterに配信できませんでした。 pack/hotMetter.pack.GetPhoto}:Java.lang.NullPointerException
これは私のコードです:
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"Select Picture"), SELECT_PICTURE);
}
Bitmap bitmap=null;
public void onActivityResult(int requestCode, int resultCode, Intent data)
{
if (resultCode == Activity.RESULT_OK)
{
if (requestCode == SELECT_PICTURE)
{
Uri selectedImageUri = data.getData();
selectedImagePath = getPath(selectedImageUri);
tv.setText(selectedImagePath);
img.setImageURI(selectedImageUri);
}
}
public String getPath(Uri uri)
{
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(uri, projection, null, null, null);
if (cursor == null) return null;
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
String s=cursor.getString(column_index);
cursor.close();
return s;
}
selectedImagePath="mnt/sdcard/DCIM/myimage"
を取得しますが、img.setImageURI(selectedImageUri);
でエラーを取得します。
Bitmap
も使用し、SetImageBitmap
から画像を設定しようとしましたが、同じエラーが発生します。
LogCat:
05-06 19:41:34.191: E/AndroidRuntime(8466): Java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=Intent { dat=content://media/external/images/media/1 }} to activity {hotMetter.pack/hotMetter.pack.GetPhoto}: Java.lang.NullPointerException
05-06 19:41:34.191: E/AndroidRuntime(8466): at Android.app.ActivityThread.deliverResults(ActivityThread.Java:2532)
05-06 19:41:34.191: E/AndroidRuntime(8466): at Android.app.ActivityThread.handleSendResult(ActivityThread.Java:2574)
05-06 19:41:34.191: E/AndroidRuntime(8466): at Android.app.ActivityThread.access$2000(ActivityThread.Java:117)
05-06 19:41:34.191: E/AndroidRuntime(8466): at Android.app.ActivityThread$H.handleMessage(ActivityThread.Java:961)
05-06 19:41:34.191: E/AndroidRuntime(8466): at Android.os.Handler.dispatchMessage(Handler.Java:99)
05-06 19:41:34.191: E/AndroidRuntime(8466): at Android.os.Looper.loop(Looper.Java:123)
05-06 19:41:34.191: E/AndroidRuntime(8466): at Android.app.ActivityThread.main(ActivityThread.Java:3683)
05-06 19:41:34.191: E/AndroidRuntime(8466): at Java.lang.reflect.Method.invokeNative(Native Method)
05-06 19:41:34.191: E/AndroidRuntime(8466): at Java.lang.reflect.Method.invoke(Method.Java:507)
05-06 19:41:34.191: E/AndroidRuntime(8466): at com.Android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.Java:839)
05-06 19:41:34.191: E/AndroidRuntime(8466): at com.Android.internal.os.ZygoteInit.main(ZygoteInit.Java:597)
05-06 19:41:34.191: E/AndroidRuntime(8466): at dalvik.system.NativeStart.main(Native Method)
05-06 19:41:34.191: E/AndroidRuntime(8466): Caused by: Java.lang.NullPointerException
05-06 19:41:34.191: E/AndroidRuntime(8466): at hotMetter.pack.GetPhoto.onActivityResult(GetPhoto.Java:55)
05-06 19:41:34.191: E/AndroidRuntime(8466): at Android.app.Activity.dispatchActivityResult(Activity.Java:3908)
05-06 19:41:34.191: E/AndroidRuntime(8466): at Android.app.ActivityThread.deliverResults(ActivityThread.Java:2528)
アドバイスお願いします!
デバッグモードでアプリを実行し、if (requestCode == SELECT_PICTURE)
にブレークポイントを設定し、ステップごとに各変数を調べて、期待どおりに設定されていることを確認します。 img.setImageURI(selectedImageUri);
でNPEを取得している場合、img
またはselectedImageUri
のいずれかが設定されていません。
単純なパスIntent
最初:
Intent i = new Intent(Intent.ACTION_PICK,Android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i, RESULT_LOAD_IMAGE);
そして、onActivityResult
で画像パスを取得します:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK && null != data) {
Uri selectedImage = data.getData();
String[] filePathColumn = { MediaStore.Images.Media.DATA };
Cursor cursor = getContentResolver().query(selectedImage,filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String picturePath = cursor.getString(columnIndex);
cursor.close();
ImageView imageView = (ImageView) findViewById(R.id.imgView);
imageView.setImageBitmap(BitmapFactory.decodeFile(picturePath));
}
}
完全なソースコードの場合 こちら
以下を試してください:
import Java.io.FileDescriptor;
import Java.io.IOException;
import Android.app.Activity;
import Android.content.Intent;
import Android.database.Cursor;
import Android.graphics.Bitmap;
import Android.graphics.BitmapFactory;
import Android.net.Uri;
import Android.os.Bundle;
import Android.os.ParcelFileDescriptor;
import Android.provider.MediaStore;
import Android.view.View;
import Android.widget.Button;
import Android.widget.ImageView;
public class ImageGalleryDemoActivity extends Activity {
private static int RESULT_LOAD_IMAGE = 1;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button buttonLoadImage = (Button) findViewById(R.id.buttonLoadPicture);
buttonLoadImage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
Intent i = new Intent(
Intent.ACTION_PICK,
Android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i, RESULT_LOAD_IMAGE);
}
});
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK && null != data) {
Uri selectedImage = data.getData();
String[] filePathColumn = { MediaStore.Images.Media.DATA };
Cursor cursor = getContentResolver().query(selectedImage,
filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String picturePath = cursor.getString(columnIndex);
cursor.close();
ImageView imageView = (ImageView) findViewById(R.id.imgView);
Bitmap bmp = null;
try {
bmp = getBitmapFromUri(selectedImage);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
imageView.setImageBitmap(bmp);
}
}
private Bitmap getBitmapFromUri(Uri uri) throws IOException {
ParcelFileDescriptor parcelFileDescriptor =
getContentResolver().openFileDescriptor(uri, "r");
FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
Bitmap image = BitmapFactory.decodeFileDescriptor(fileDescriptor);
parcelFileDescriptor.close();
return image;
}
}
@paragのコードはすばらしい。しかし、いくつかの大きな画像をロードしているときに失敗する場合があります。使用する必要があります。
imageView.setImageBitmap(getScaledBitmap(picturePath, 800, 800));
の代わりに;
imageView.setImageBitmap(BitmapFactory.decodeFile(picturePath));
使用できる私の方法は次のとおりです。
private Bitmap getScaledBitmap(String picturePath, int width, int height) {
BitmapFactory.Options sizeOptions = new BitmapFactory.Options();
sizeOptions.inJustDecodeBounds = true;
BitmapFactory.decodeFile(picturePath, sizeOptions);
int inSampleSize = calculateInSampleSize(sizeOptions, width, height);
sizeOptions.inJustDecodeBounds = false;
sizeOptions.inSampleSize = inSampleSize;
return BitmapFactory.decodeFile(picturePath, sizeOptions);
}
private int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {
// Raw height and width of image
final int height = options.outHeight;
final int width = options.outWidth;
int inSampleSize = 1;
if (height > reqHeight || width > reqWidth) {
// Calculate ratios of height and width to requested height and
// width
final int heightRatio = Math.round((float) height / (float) reqHeight);
final int widthRatio = Math.round((float) width / (float) reqWidth);
// Choose the smallest ratio as inSampleSize value, this will
// guarantee
// a final image with both dimensions larger than or equal to the
// requested height and width.
inSampleSize = heightRatio < widthRatio ? heightRatio : widthRatio;
}
return inSampleSize;
}
これは、ギャラリーから画像を取得する最も簡単な方法です。
ステップ1:結果のStartActivity
imageUser.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_PICK,
MediaStore.Images.Media.INTERNAL_CONTENT_URI);
intent.setType("image/*");
intent.putExtra("crop", "true");
intent.putExtra("scale", true);
intent.putExtra("outputX", 256);
intent.putExtra("outputY", 256);
intent.putExtra("aspectX", 1);
intent.putExtra("aspectY", 1);
intent.putExtra("return-data", true);
startActivityForResult(intent, 1);
}
});
ステップ2:結果を処理する
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode != RESULT_OK) {
return;
}
if (requestCode == 1) {
final Bundle extras = data.getExtras();
if (extras != null) {
//Get image
Bitmap ProfilePic = extras.getParcelable("data");
imageUser.setImageBitmap(ProfilePic);
TextView t=(TextView)findViewById(R.id.textoverimage);
t.setText("image Selected");
}
}
}
ライブラリContentManagerを使用するのが最も簡単な方法だと思います。デバイスギャラリー、クラウド、またはカメラから写真またはビデオを取得するためのこのライブラリ。クラウドからの非同期ロードおよび一部の問題のあるデバイスのバグの修正。
Gradle経由でダウンロード:compile 'com.github.stfalcon:contentmanager:0.4.3'
https://github.com/stfalcon-studio/ContentManager でドキュメントを検索できます。
import Android.content.Intent;
import Android.net.Uri;
import Android.provider.MediaStore;
import Android.support.v7.app.AppCompatActivity;
import Android.os.Bundle;
import Android.view.View;
import Android.widget.ImageView;
public class MainActivity extends AppCompatActivity {
ImageView img;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
img = (ImageView)findViewById(R.id.imageView);
}
public void btn_gallery(View view) {
Intent intent =new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.INTERNAL_CONTENT_URI);
startActivityForResult(intent,100);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode==100 && resultCode==RESULT_OK)
{
Uri uri = data.getData();
img.setImageURI(uri);
}
}
}
Intent ImageIntent = new Intent(Intent.ACTION_PICK,
MediaStore.Images.Media.EXTERNAL_CONTENT_URI); //implicit intent
UploadImage.this.startActivityForResult(ImageIntent,99);
Uri ImagePathAndName = data.getData();
imgpicture.setImageURI(ImagePathAndName);
imageView imgがインスタンス化されず、コンパイラーに対してnullに等しいと思います。それがNullPointerExceptionが発生する理由です
アクティビティで電話しましたか
img = (ImageView) findViewById(R.id.my_imageview);
my_imageviewはImageViewウィジェットのIDです!!
@Parag Chauhan soltutionはうまく機能していますが、問題がありました-一部のファイルマネージャーアプリは、「content:// ...」ではなくIntentオブジェクト「file:/// ...」で返されます-これはクエリを使用するために必要です。
その問題に対する私の短い解決策があります:
public String getRealPathFromURI(Context context, Uri contentUri) {
Cursor cursor = null;
try {
if("content".equals(contentUri.getScheme())) {
String[] proj = {MediaStore.Images.Media.DATA};
cursor = context.getContentResolver().query(contentUri, proj, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
else{
return contentUri.getPath();
}
} finally {
if (cursor != null) {
cursor.close();
}
}
}
@Paragソリューションに基づいて、
部分的な解決策はこちら(@nobre) Android:コンテンツURIからファイルURIを取得しますか?
ここで重要な解決策(@Nikolay) mediastoreからURIからファイル名とパスを取得
これが私のために働いたコードです。
Button buttonLoadImage = (Button) findViewById(R.id.button4);
buttonLoadImage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(Intent.ACTION_PICK,
MediaStore.Images.Media.INTERNAL_CONTENT_URI);
intent.setType("image/*");
intent.putExtra("crop", "true");
intent.putExtra("scale", true);
intent.putExtra("outputX", 256);
intent.putExtra("outputY", 256);
intent.putExtra("aspectX", 1);
intent.putExtra("aspectY", 1);
intent.putExtra("return-data", true);
startActivityForResult(intent, 1);}});
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode != RESULT_OK) {
if (requestCode == RESULT_LOAD_IMAGE && data != null) {
Uri imageUri = data.getData();
imageView = (ImageView) findViewById(R.id.imgView);
imageView.setImageURI(imageUri);}}}
マニフェストファイルに追加
<uses-permission Android:name="Android.permission.READ_EXTERNAL_STORAGE" />
元の答えは、パスがUri.parse( "file://" + file.getPath);のようなプレフィックスを結合する必要があるということです。
parag-chauhan および devrim 答えは完璧ですが、カーソルなしでonActivityResultを変更すると、コードがより良くなります。
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK && data != null) {
Uri selectedImage = data.getData();
try {
ImageView imageView = (ImageView) findViewById(R.id.imgView);
imageView.setImageBitmap(getScaledBitmap(selectedImage,800,800));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
private Bitmap getScaledBitmap(Uri selectedImage, int width, int height) throws FileNotFoundException {
BitmapFactory.Options sizeOptions = new BitmapFactory.Options();
sizeOptions.inJustDecodeBounds = true;
BitmapFactory.decodeStream(getContentResolver().openInputStream(selectedImage), null, sizeOptions);
int inSampleSize = calculateInSampleSize(sizeOptions, width, height);
sizeOptions.inJustDecodeBounds = false;
sizeOptions.inSampleSize = inSampleSize;
return BitmapFactory.decodeStream(getContentResolver().openInputStream(selectedImage), null, sizeOptions);
}
private int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {
// Raw height and width of image
final int height = options.outHeight;
final int width = options.outWidth;
int inSampleSize = 1;
if (height > reqHeight || width > reqWidth) {
// Calculate ratios of height and width to requested one
final int heightRatio = Math.round((float) height / (float) reqHeight);
final int widthRatio = Math.round((float) width / (float) reqWidth);
// Choose the smallest ratio as inSampleSize value
inSampleSize = heightRatio < widthRatio ? heightRatio : widthRatio;
}
return inSampleSize;
}