码迷,mamicode.com
首页 > 移动开发 > 详细

关于android:getSlotFromBufferLocked的问题

时间:2017-03-05 23:42:23      阅读:1401      评论:0      收藏:0      [点我收藏+]

标签:报错   env   setimage   dem   exist   intent   span   android   actor   

今天写了个调用摄像头之后将照片贴在屏幕上面的demo,出现了这个问题。代码如下

package android.com.java.choosepictest;

import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;

public class MainActivity extends Activity {
    public static final int TAKE_PHOTO = 1;
    public static final int CROP_PHOTO = 2;
    private Button takePhoto;
    private ImageView picture;
    private Uri imageUri;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        takePhoto = (Button)findViewById(R.id.take_photo);
        picture = (ImageView)findViewById(R.id.picture);
        takePhoto.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                File outputImage = new File(Environment.getExternalStorageDirectory(),"output_image.jpg");
                try{
                    if (outputImage.exists()){
                        outputImage.delete();
                    }
                    outputImage.createNewFile();
                }catch (IOException e){
                    e.printStackTrace();
                }
                imageUri = Uri.fromFile(outputImage);
                android.util.Log.e("YPC","uri = "+imageUri);
                try {
                    Bitmap mBitmap = BitmapFactory.decodeStream((getContentResolver().openInputStream(imageUri)));
                    Log.e("YPC","bitmap = "+mBitmap);
                    Log.e("YPC","getContentResolver().openInputStream(imageUri) = "+getContentResolver().openInputStream(imageUri));
                    picture.setImageBitmap(mBitmap);
                }catch (FileNotFoundException e){
                    e.printStackTrace();
                }
                Intent intent = new Intent ("android.media.action.IMAGE_CAPTURE");
                intent.putExtra(MediaStore.EXTRA_OUTPUT,imageUri);
                startActivityForResult(intent,TAKE_PHOTO);
            }
        });
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        switch (requestCode){
            case TAKE_PHOTO:
                if (requestCode == RESULT_OK) {
                    Intent intent = new Intent ("com.android.camera.action.CROP");
                    intent.setDataAndType(imageUri,"image/*");
                    intent.putExtra("scale",true);
                    intent.putExtra(MediaStore.EXTRA_OUTPUT,imageUri);
                    try {
                        Bitmap mBitmap = BitmapFactory.decodeStream((getContentResolver().openInputStream(imageUri)));
                        Log.e("YPC","bitmap = "+mBitmap);
                        Log.e("YPC","getContentResolver().openInputStream(imageUri) = "+getContentResolver().openInputStream(imageUri));
                        picture.setImageBitmap(mBitmap);
                    }catch (FileNotFoundException e){
                        e.printStackTrace();
                    }
                    startActivityForResult(intent,CROP_PHOTO);
                }
                break;
            case CROP_PHOTO:
                if (resultCode == RESULT_OK){
                    try{
                        Bitmap bitmap = BitmapFactory.decodeStream((getContentResolver().openInputStream(imageUri)));
                        picture.setImageBitmap(bitmap);
                        android.util.Log.e("YPC","bitmap = "+bitmap);

                    }catch (FileNotFoundException e){
                        e.printStackTrace();
                    }
                }
                break;
            default:break;
        }
    }
}

不清楚为什么会报错。立个flag,明天来看看能不能写问题的原因

关于android:getSlotFromBufferLocked的问题

标签:报错   env   setimage   dem   exist   intent   span   android   actor   

原文地址:http://www.cnblogs.com/Sample1994/p/6507189.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!