android - Intent setDataAndType 作为位图

标签 android

我正在尝试使用一种方法来裁剪图像。正是这种方法:

private void performCrop() {
    try {
        //call the standard crop action intent (the user device may not support it)
        Intent cropIntent = new Intent("com.android.camera.action.CROP");
        //indicate image type and Uri
        cropIntent.setDataAndType(**HERE**, "image/*");
        //set crop properties
        cropIntent.putExtra("crop", "true");
        //indicate aspect of desired crop
        cropIntent.putExtra("aspectX", 1);
        cropIntent.putExtra("aspectY", 1);
        //indicate output X and Y
        cropIntent.putExtra("outputX", 256);
        cropIntent.putExtra("outputY", 256);
        //retrieve data on return
        cropIntent.putExtra("return-data", true);
        //start the activity - we handle returning in onActivityResult
        startActivityForResult(cropIntent, 1234);
    }
    catch(ActivityNotFoundException anfe){
        Log.d("debugging","EXCEPTION");/*
        //display an error message
        String errorMessage = "Whoops - your device doesn't support the crop action!";
        Toast toast = Toast.makeText(this, errorMessage, Toast.LENGTH_SHORT);
        toast.show();*/
    }
}

此行要求提供 Uri 数据和字符串类型。

    cropIntent.setDataAndType(**HERE**, "image/*");

但我只想放这张位图

Bitmap fotoCreada;

作为数据,但我不知道该怎么做。

有什么办法可以实现吗?

谢谢。

编辑

好的,现在这是我的代码:

有一个按钮。当你点击它时:

public void onClick(View v) {
            Boolean isSDPresent = android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
            if(isSDPresent) {
                //Creem carpeta
                File folder = new File(Environment.getExternalStorageDirectory().toString()+"/pic/");
                folder.mkdirs();
                //Recuperem data actual
                SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd_HHmmss");
                String currentDateandTime = sdf.format(new Date());
                //Cridem a la camara.
                Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
                resultingFile=new File(folder.toString() + "/"+currentDateandTime+".jpg");
                Uri uriSavedImage=Uri.fromFile(resultingFile);
                cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, uriSavedImage);
                //Començem activity
                startActivityForResult(cameraIntent, 1888); 
            } else {
                Toast toast = Toast.makeText(getActivity(), "Issues while accessing sdcard.", Toast.LENGTH_SHORT);
                toast.show();
            }
        }   

如您所见,它正在调用 startActivityForResult。基本上拍一张照片,我在 activityResult 上检索它:

public void onActivityResult(int requestCode, int resultCode, Intent data) {
    Log.d("debugging",""+resultCode);
    if( requestCode == 1888 && resultCode == -1) { //-1 = TOT HA ANAT BE.
        Bitmap photo = BitmapFactory.decodeFile(resultingFile.getPath());
        Matrix matrix = new Matrix();
        matrix.postRotate(90);
        Bitmap photoRotated = Bitmap.createBitmap(photo, 0, 0, photo.getWidth(), photo.getHeight(), matrix, true);
        this.fotoCreada=photoRotated;
        ((ImageView) myFragmentView.findViewById(R.id.fotoCapturada)).setImageBitmap(this.fotoCreada);
        try {
            FileOutputStream out = new FileOutputStream(this.resultingFile.getPath());
            this.fotoCreada.compress(Bitmap.CompressFormat.PNG, 90, out);
        } catch (Exception e) {
            e.printStackTrace();
        }
        performCrop();
    }
    if (requestCode == 1234 && resultCode == -1){
        Bitmap bitmap = (Bitmap) data.getParcelableExtra("BitmapImage");
        Log.d("debugging",""+bitmap.getHeight());
    }
}

正如您从前面的代码中看到的那样,当我检索位图时,我调用了方法 performCrop。它的代码现在是:

private void performCrop() {
    try {
        //call the standard crop action intent (the user device may not support it)
        Intent cropIntent = new Intent("com.android.camera.action.CROP");
        //indicate image type and Uri
        //cropIntent.setDataAndType(this.picUri, "image/*");
        cropIntent.putExtra("BitmapImage", this.fotoCreada);
        //set crop properties
        cropIntent.putExtra("crop", "true");
        //indicate aspect of desired crop
        cropIntent.putExtra("aspectX", 1);
        cropIntent.putExtra("aspectY", 1);
        //indicate output X and Y
        cropIntent.putExtra("outputX", 256);
        cropIntent.putExtra("outputY", 256);
        //retrieve data on return
        cropIntent.putExtra("return-data", true);
        //start the activity - we handle returning in onActivityResult
        startActivityForResult(cropIntent, 1234);
        Log.d("debugging","he acabat performCrop");
    }
    catch(ActivityNotFoundException anfe){
        Log.d("debugging","EXCEPTION");
        //display an error message
        String errorMessage = "Whoops - your device doesn't support the crop action!";
        Toast toast = Toast.makeText(this, errorMessage, Toast.LENGTH_SHORT);
        toast.show();
    }
}

但是 performCrop 的 startActivityForResult 永远不会结束调用 onActivityResult。日志猫说它只进入了一次,应该进入两次。第一个来自相机 Activity ,第二个来自裁剪 Activity 。

-1
he acabat performCrop

希望它足够清楚。

谢谢。

最佳答案

Bitmap 实现了 Parcelable,因此您始终可以在 Intent 中传递它:

Intent intent = new Intent(this, NewActivity.class);
intent.putExtra("BitmapImage", bitmap);

并在另一端取回它:

Bitmap bitmap = (Bitmap) intent.getParcelableExtra("BitmapImage");

但是,如果位图作为文件或资源存在,最好传递位图的 URI 或 ResourceID 而不是位图本身。传递整个位图需要大量内存。传递 URL 需要很少的内存,并允许每个 Activity 根据需要加载和缩放位图。

关于android - Intent setDataAndType 作为位图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14428969/

相关文章:

android - 从待机状态解锁手机时,如何停止 Android 应用程序中的自动屏幕旋转

android - 为什么我在 Service 中发送通知时在 build() 中出现 NullPointerException?

android - 应用程序根本不格式化元素,只是将它们全部显示在一行中

java - 将 APK 与应用程序 bundle 在一起

android - 无法从动态添加的复选框中获取值

java - 如何在 onNavigationItemSelected 中退出 Google+

android - 添加航点以在位智 map 中导航

java - 何时使用 Enum/Int 常量

android - Android Chrome 中的 Jquery 错误

android - 编译Android项目