从相机捕获的图像未显示

时间:2016-08-10 16:33:32

标签: java android

我正在尝试捕获图像,然后使用其他活动将其显示在屏幕上。我能够成功捕获图像并将其保存在我想要的目录中。然而,即使经过数小时的斗争,我仍然无法解决这个问题。虽然没有图像,但触摸监听器被添加到屏幕上。 这是代码:

private void takeImage(){ Intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());


File imagesFolder = new File(Environment.getExternalStorageDirectory(), "MyImages");
imagesFolder.mkdirs();

File image = new File(imagesFolder, "QR_" + timeStamp + ".png");
Uri uriSavedImage = Uri.fromFile(image);

imageIntent.putExtra(MediaStore.EXTRA_OUTPUT, uriSavedImage);

startActivityForResult(imageIntent, PHOTO_TAKEN); }

 @Override
 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == PHOTO_TAKEN){
       data.putExtra(SET_CAPTURED_IMAGE, true);
    } else{
       Log.d(MainActivity.DEBUGTAG, "Photo = null");
   }
}

现在进入另一项活动(ImageActivity):

在此活动的onCreate()方法中调用addTouchListener()。 到此为止,图像已成功捕获并保存在目录中。

private void addTouchListener(){
    ImageView imageView = (ImageView)findViewById(R.id.unlocker_image);
    Bundle extras = getIntent().getExtras();

//The following if block is not executed
    if (extras != null && extras.getBoolean(MainActivity.SET_CAPTURED_IMAGE)){
        Uri imageUri= Uri.parse(extras.getString(MediaStore.EXTRA_OUTPUT));
        imageView.setImageURI(imageUri);
    } else {
        imageView.setImageResource(R.drawable.unlocker_image);
        //this is the default image added
   }
imageView.setOnTouchListener(collector);
}

此时,添加了触控侦听器,但没有图像。

0 个答案:

没有答案