【问题标题】:Android getting pictures from photo's gallery - error on some devicesAndroid 从照片库中获取图片 - 某些设备上的错误
【发布时间】:2016-01-21 12:21:42
【问题描述】:

我的应用程序中有一个功能,我可以打开照片库并选择要在 ImageView 中显示的图像。奇怪的是,在我的三星 Galaxy S5 上,代码运行良好,但当我在华硕 Zenphone 或摩托罗拉 Moto X 上尝试时,代码就无法运行,应用程序崩溃。
所有设备都具有相同的 Android 版本 (5.0)

这是我的代码示例:

打算打开照片库:

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent, IMG_SDCARD);

活动结果:

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {

    File file = null;

    if(data != null && requestCode == IMG_SDCARD && resultCode == getActivity().RESULT_OK){
        Uri img = data.getData();

        String[] cols = { MediaStore.Images.Media.DATA };
        Cursor cursor = getActivity().getContentResolver().query(img, cols, null, null, null);
        cursor.moveToFirst();

        int indexCol = cursor.getColumnIndex(cols[0]);
        String imgString = cursor.getString(indexCol);
        cursor.close();

        file = new File(imgString);

        if(file != null){
            wd.getImage().setResizedBitmap(file, 1200, 700);
            wd.getImage().setMimeFromImgPath(file.getPath());
        }
    }

    if(wd.getImage().getBitmap() != null){
        imageView.setImageBitmap(wd.getImage().getBitmap());
    }
}

你们见过这样的吗?
在不同设备之间从照片库中获取图像可能会有所不同吗?

编辑
这是日志错误:

01-21 10:34:01.066  30243-30243/com.inthecheesefactory.lab.designlibrary E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: com.inthecheesefactory.lab.designlibrary, PID: 30243
java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=65539, result=-1, data=Intent { dat=content://com.android.providers.media.documents/document/image:4904 flg=0x1 }} to activity {com.inthecheesefactory.lab.designlibrary/br.com.amais.viumeupet.MainActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'char[] java.lang.String.toCharArray()' on a null object reference
        at android.app.ActivityThread.deliverResults(ActivityThread.java:3559)
        at android.app.ActivityThread.handleSendResult(ActivityThread.java:3602)
        at android.app.ActivityThread.access$1300(ActivityThread.java:151)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1334)
        at android.os.Handler.dispatchMessage(Handler.java:102)
        at android.os.Looper.loop(Looper.java:135)
        at android.app.ActivityThread.main(ActivityThread.java:5289)
        at java.lang.reflect.Method.invoke(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:372)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)
 Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'char[] java.lang.String.toCharArray()' on a null object reference
        at java.io.File.fixSlashes(File.java:179)
        at java.io.File.<init>(File.java:128)
        at br.com.amais.viumeupet.Fragment1.onActivityResult(Fragment1.java:285)
        at android.support.v4.app.FragmentActivity.onActivityResult(FragmentActivity.java:153)
        at br.com.amais.viumeupet.MainActivity.onActivityResult(MainActivity.java:231)
        at android.app.Activity.dispatchActivityResult(Activity.java:6220)
        at android.app.ActivityThread.deliverResults(ActivityThread.java:3555)
at android.app.ActivityThread.handleSendResult(ActivityThread.java:3602)
            at android.app.ActivityThread.access$1300(ActivityThread.java:151)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1334)
            at android.os.Handler.dispatchMessage(Handler.java:102)
            at android.os.Looper.loop(Looper.java:135)
            at android.app.ActivityThread.main(ActivityThread.java:5289)
            at java.lang.reflect.Method.invoke(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:372)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:694)

【问题讨论】:

标签: android image android-sdcard mobile-devices


【解决方案1】:
public static final int GALLERY_INTENT_REQUEST_CODE = 0x000005;

要打开图库并获取所选图像的路径,请使用以下代码:

Intent photoPickerIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
 photoPickerIntent.setType("image/*");
 photoPickerIntent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());        
 mActPanelFragment.startActivityForResult(photoPickerIntent, ActivityConstantUtils.GALLERY_INTENT_REQUEST_CODE);

在 onActivityResult() 方法中获得路径

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
(requestCode == ActivityConstantUtils.GALLERY_INTENT_REQUEST_CODE && resultCode == Activity.RESULT_OK) {
try {
            String imagePath = getFilePath(data);
            // TODO: Here you set data to preview screen
    }catch(Exception e){}
}
}

private String getFilePath(Intent data) {
    String imagePath;
    Uri selectedImage = data.getData();
    String[] filePathColumn = {MediaStore.Images.Media.DATA};

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

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

    return imagePath;

}

【讨论】:

  • 就是这样!非常感谢:)
【解决方案2】:

不要求ACTION_GET_CONTENTMediaStore 向您返回Uri。即使是这样,也不需要您的代码为您提供您具有读取权限的文件的路径。在您的情况下,imgStringnull,这并不令人惊讶。

相反,摆脱所有这些(包括任何wd 是)并使用image-loading library,例如Picasso,它可以将Uri 带到图像并处理所有加载和调整大小您(在后台线程上)并更新您的ImageView

如果您坚持自己这样做,请派生一个后台线程,然后使用ContentResolveropenInputStream()getType() 等方法,以及BitmapFactory

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-01-19
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多