java – 如何使用ACTION_IMAGE_CAPTURE从相机捕获照片后如何跳过或避免“重新拍摄和查看”选项

前端之家收集整理的这篇文章主要介绍了java – 如何使用ACTION_IMAGE_CAPTURE从相机捕获照片后如何跳过或避免“重新拍摄和查看”选项前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我点击照片并设置到我的 Imageview时,我想显示图像,而不用用户选择是或否….

我更多的研究,我也非常了解,相机应用程序本身使您能够查看/重新拍摄图像,一旦接受图像,活动将显示它.但我想没有审查/重新开始活动显示…..

我正在尝试这个代码

用来初始化

Uri mImageCaptureUri;

点击按钮

Intent intent      = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    intent.putExtra(MediaStore.EXTRA_SCREEN_ORIENTATION,ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    File file        = new File(Environment.getExternalStorageDirectory(),"tmp_avatar_" + String.valueOf(System.currentTimeMillis()) + ".jpg");
    mImageCaptureUri = Uri.fromFile(file);

    try {

        intent.putExtra(MediaStore.AUTHORITY,true);
        intent.putExtra("return-data",true);
        intent.putExtra(MediaStore.EXTRA_OUTPUT,mImageCaptureUri);
        startActivityForResult(intent,PICK_FROM_CAMERA);
    } catch (Exception e) {
        e.printStackTrace();
    }

onActivityResult

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

        Bitmap bitmap = null;


        mPath = mImageCaptureUri.getPath();

        System.out.println("THE PAtH:_" + mPath);

        BitmapFactory.Options o2 = new BitmapFactory.Options();
        bitmap = BitmapFactory.decodeFile(mPath,o2);
        ivSelfie.setImageBitmap(bitmap);


}

When I am Click the Photo Than I am Take this screen to select yes or not……

But My requirement is not select review/retake task and direct set to ImageView on activity display when just click and set…..

解决方法

实际上,确认拍照是非常有用的.但是,如果你真的不想拥有它,你必须在你的应用程序中使用SurfaceView,并在这里显示相机流.有音调的例子如何做,例如考虑检查 one.
原文链接:https://www.f2er.com/java/125414.html

猜你在找的Java相关文章