Android: интеграция функциональности галереи с захватом камеры

Я работаю над проектом Android, в котором у меня есть функциональность, где пользователь может нажать наbutton и он откроет камеру для загрузки изображения. Кнопка загрузки скрыта, пока изображение не будет снято и показано в предварительном просмотре.

То, что я хотел бы сделать, это использовать ту же кнопку загрузки, которую я установил для отображения по умолчанию сейчас, и, щелкнув по ней, я хотел бы открыть галерею, которую пользователь затем может использовать для выбора изображения, и она будет быть показан в предварительном просмотре.

У меня есть логический флаг, чтобы управлять этим, где, если флаг ложен, тогда галерея открыта, иначе изображение в предварительном просмотре загружено.

У меня есть это, но я не знаю, как открыть галерею, а затем отправить изображение для предварительного просмотра, чтобы загрузить. Я новичок в программировании на Android, поэтому примите это во внимание.

Я искал похожую функциональность, но проблема в том, что я не нашел, где такие функции интегрированы.

Java-код:

    RobotoTextView BtnSelectImage;
    private ImageView ImgPhoto;

    CheckBox profilePhotoCheckBox;
    final RestaurantImageServiceImpl restaurantService = new RestaurantImageServiceImpl();

    private static final int CAMERA_PHOTO = 111;
    private Uri imageToUploadUri;

   private static volatile Bitmap reducedSizeBitmap;

    ByteArrayOutputStream stream = new ByteArrayOutputStream();

    private static boolean galleryFlag = false;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.add_restaurant_images);

  ImgPhoto = (ImageView) findViewById(R.id.userPhotoImageView);
        BtnSelectImage = (RobotoTextView) findViewById(R.id.userPhotoButtonSelect);
        profilePhotoCheckBox = (CheckBox)findViewById(R.id.profilePhotoCheckBox);
        BtnSelectImage.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                try {
                    galleryFlag = true;
                    captureCameraImage();

                } catch (Exception e) {
                    Toast.makeText(getApplicationContext(), "Couldn't load photo", Toast.LENGTH_LONG).show();
                }
            }
        });

        uploadImageButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (!(v == null)) {

                    if(!galleryFlag){
                        // I think the gallery open code should come here. 
                    }

                    if (profilePhotoCheckBox.isChecked()) {
                        uploadImage(true);
                    }else {
                        uploadImage(false);
                    }
                    new AlertDialog.Builder(AddPhotosForRestaurant.this)
                    .setTitle("Add more photos")
                            .setMessage("Are you sure you want to add more photos?")
                            .setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() {
                                public void onClick(DialogInterface dialog, int which) {
                                    finish();
                                    startActivity(getIntent());
                                }
                            })
                            .setNegativeButton(android.R.string.no, new DialogInterface.OnClickListener() {
                                public void onClick(DialogInterface dialog, int which) {
                                    Intent intent = new Intent(getApplicationContext(), RestaurantMenu.class);
                                    startActivity(intent);
                                    finish();
                                }
                            })
                            .setIcon(android.R.drawable.ic_dialog_alert)
                            .show();

                }
            }
        });

    }

    private Bitmap getBitmap(String path) {

        Uri uri = Uri.fromFile(new File(path));
        InputStream in = null;
        try {
            final int IMAGE_MAX_SIZE = 1200000; // 1.2MP
            in = getContentResolver().openInputStream(uri);

            // Decode image size
            BitmapFactory.Options o = new BitmapFactory.Options();
            o.inJustDecodeBounds = true;
            BitmapFactory.decodeStream(in, null, o);
            in.close();


            int scale = 1;
            while ((o.outWidth * o.outHeight) * (1 / Math.pow(scale, 2)) >
                    IMAGE_MAX_SIZE) {
                scale++;
            }
            Log.d("", "scale = " + scale + ", orig-width: " + o.outWidth + ", orig-height: " + o.outHeight);

            Bitmap b = null;
            in = getContentResolver().openInputStream(uri);
            if (scale > 1) {
                scale--;
                // scale to max possible inSampleSize that still yields an image
                // larger than target
                o = new BitmapFactory.Options();
                o.inSampleSize = scale;
                b = BitmapFactory.decodeStream(in, null, o);

                // resize to desired dimensions
                int height = b.getHeight();
                int width = b.getWidth();
                Log.d("", "1th scale operation dimenions - width: " + width + ", height: " + height);

                double y = Math.sqrt(IMAGE_MAX_SIZE
                        / (((double) width) / height));
                double x = (y / height) * width;

                Bitmap scaledBitmap = Bitmap.createScaledBitmap(b, (int) x,
                        (int) y, true);
                b.recycle();
                b = scaledBitmap;
                System.gc();
            } else {
                b = BitmapFactory.decodeStream(in);
            }
            in.close();

            Log.d("", "bitmap size - width: " + b.getWidth() + ", height: " +
                    b.getHeight());
            return b;
        } catch (IOException e) {
            Log.e("", e.getMessage(), e);
            return null;
        }
    }

    private void captureCameraImage() {
        Intent chooserIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
        File f = new File(Environment.getExternalStorageDirectory(), "POST_IMAGE.jpg");
        chooserIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(f));
        imageToUploadUri = Uri.fromFile(f);
        startActivityForResult(chooserIntent, CAMERA_PHOTO);
    }

    @Override
    public void onBackPressed() {
        Intent intent = new Intent(this, Login.class);
        StaticRestTemplate.setReplyString("");
        StaticRestTemplate.setLoggedInUser("");
        StaticRestTemplate.setJsessionid("");
        startActivity(intent);
        finish();
    }

    @Override
    protected void onActivityResult(final int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        if (requestCode == CAMERA_PHOTO && resultCode == Activity.RESULT_OK) {
            if(imageToUploadUri != null){
                Uri selectedImage = imageToUploadUri;
                getContentResolver().notifyChange(selectedImage, null);
                reducedSizeBitmap = getBitmap(imageToUploadUri.getPath());
                if(reducedSizeBitmap != null){
                    ImgPhoto.setImageBitmap(reducedSizeBitmap);
                    RobotoTextView uploadImageButton = (RobotoTextView) findViewById(R.id.uploadUserImageButton);
                    uploadImageButton.setVisibility(View.VISIBLE);
                }else{
                    Toast.makeText(this,"Error while capturing Image",Toast.LENGTH_LONG).show();
                }
            }else{
                Toast.makeText(this,"Error while capturing Image",Toast.LENGTH_LONG).show();
            }
        }
    }

    private void uploadImage(boolean profilePhoto) {
        if(!(reducedSizeBitmap == null)){
            if(reducedSizeBitmap == null){
                Log.d("Image bitmap"," Is null");
            }
            reducedSizeBitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
            byte[] byteArray = stream.toByteArray();
            this.restaurantService.addRestaurantImage(byteArray,profilePhoto);
        }
    }
}

Я надеюсь, что этой информации достаточно. Может кто-нибудь указать мне, какие функции я должен поставить и где. Большое спасибо. :-)

Редактировать с ответом

Наконец интеграция работает. Я должен был объединить ответы из полученного мной издесь на ТАК. Окончательный код

public class AddPhotosForRestaurant extends RestaurantDrawerActivity {

    RobotoTextView BtnSelectImage;
    private ImageView ImgPhoto;

    CheckBox profilePhotoCheckBox;
    final RestaurantImageServiceImpl restaurantService = new RestaurantImageServiceImpl();

    private static final int CAMERA_PHOTO = 111;
    public static final int GALLERY_INTENT_REQUEST_CODE = 0x000005;
    private Uri imageToUploadUri = null;

    private static volatile Bitmap reducedSizeBitmap;

    ByteArrayOutputStream stream = new ByteArrayOutputStream();

    private boolean galleryFlag = false;

    private boolean uploadNow = false;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.add_restaurant_images);

        set(null, null);

        final RobotoTextView uploadImageButton = (RobotoTextView) findViewById(R.id.uploadUserImageButton);

        ImgPhoto = (ImageView) findViewById(R.id.userPhotoImageView);
        BtnSelectImage = (RobotoTextView) findViewById(R.id.userPhotoButtonSelect);
        profilePhotoCheckBox = (CheckBox) findViewById(R.id.profilePhotoCheckBox);
        BtnSelectImage.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                try {
                    galleryFlag = true;
                    captureCameraImage();

                } catch (Exception e) {
                    Toast.makeText(getApplicationContext(), "Couldn't load photo", Toast.LENGTH_LONG).show();
                }
            }
        });

        uploadImageButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if (!(v == null)) {

                    if (uploadNow) {
                        uploadNow = false;
                        galleryFlag = true;
                        if (profilePhotoCheckBox.isChecked()) {
                            uploadImage(true);
                        } else {
                            uploadImage(false);
                        }
                    }

                    if (!galleryFlag) {
                        galleryFlag = true;
                        uploadNow = true;
                        Intent intent = new Intent();
                        intent.setType("image/*");
                        intent.setAction(Intent.ACTION_GET_CONTENT);
                        startActivityForResult(Intent.createChooser(intent, "Select Picture"),
                                GALLERY_INTENT_REQUEST_CODE);
                    } else {
                        if (profilePhotoCheckBox.isChecked()) {
                            uploadImage(true);
                        } else {
                            uploadImage(false);
                        }
                        new AlertDialog.Builder(AddPhotosForRestaurant.this)
                                .setTitle("Add more photos")
                                .setMessage("Are you sure you want to add more photos?")
                                .setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() {
                                    public void onClick(DialogInterface dialog, int which) {
                                        finish();
                                        startActivity(getIntent());
                                    }
                                })
                                .setNegativeButton(android.R.string.no, new DialogInterface.OnClickListener() {
                                    public void onClick(DialogInterface dialog, int which) {
                                        Intent intent = new Intent(getApplicationContext(), RestaurantMenu.class);
                                        startActivity(intent);
                                        finish();
                                    }
                                })
                                .setIcon(android.R.drawable.ic_dialog_alert)
                                .show();
                    }

                }
            }
        });

    }

    private Bitmap getBitmap(String path) {

        Uri uri = Uri.fromFile(new File(path));
        InputStream in = null;
        try {
            final int IMAGE_MAX_SIZE = 1200000; // 1.2MP
            in = getContentResolver().openInputStream(uri);

            // Decode image size
            BitmapFactory.Options o = new BitmapFactory.Options();
            o.inJustDecodeBounds = true;
            BitmapFactory.decodeStream(in, null, o);
            in.close();


            int scale = 1;
            while ((o.outWidth * o.outHeight) * (1 / Math.pow(scale, 2)) >
                    IMAGE_MAX_SIZE) {
                scale++;
            }
            Bitmap b;
            in = getContentResolver().openInputStream(uri);
            if (scale > 1) {
                scale--;
                // scale to max possible inSampleSize that still yields an image
                // larger than target
                o = new BitmapFactory.Options();
                o.inSampleSize = scale;
                b = BitmapFactory.decodeStream(in, null, o);

                // resize to desired dimensions
                int height = b.getHeight();
                int width = b.getWidth();

                double y = Math.sqrt(IMAGE_MAX_SIZE
                        / (((double) width) / height));
                double x = (y / height) * width;

                Bitmap scaledBitmap = Bitmap.createScaledBitmap(b, (int) x,
                        (int) y, true);
                b.recycle();
                b = scaledBitmap;
                System.gc();
            } else {
                b = BitmapFactory.decodeStream(in);
            }
            in.close();
            return b;
        } catch (IOException e) {
            return null;
        }
    }

    private void captureCameraImage() {
        Intent chooserIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
        File f = new File(Environment.getExternalStorageDirectory(), "POST_IMAGE.jpg");
        chooserIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(f));
        imageToUploadUri = Uri.fromFile(f);
        startActivityForResult(chooserIntent, CAMERA_PHOTO);
    }

    @Override
    public void onBackPressed() {
        Intent intent = new Intent(this, Login.class);
        StaticRestTemplate.setReplyString("");
        StaticRestTemplate.setLoggedInUser("");
        StaticRestTemplate.setJsessionid("");
        startActivity(intent);
        finish();
    }

    @Override
    protected void onActivityResult(final int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        if (requestCode == CAMERA_PHOTO && resultCode == Activity.RESULT_OK) {
            if (imageToUploadUri != null) {
                Uri selectedImage = imageToUploadUri;
                getContentResolver().notifyChange(selectedImage, null);
                reducedSizeBitmap = getBitmap(imageToUploadUri.getPath());
                if (reducedSizeBitmap != null) {
                    ImgPhoto.setImageBitmap(reducedSizeBitmap);
                    RobotoTextView uploadImageButton = (RobotoTextView) findViewById(R.id.uploadUserImageButton);
                    uploadImageButton.setVisibility(View.VISIBLE);
                } else {
                    Toast.makeText(this, "Error while capturing Image", Toast.LENGTH_LONG).show();
                }
            } else {
                Toast.makeText(this, "Error while capturing Image", Toast.LENGTH_LONG).show();
            }
        }

        if (requestCode == GALLERY_INTENT_REQUEST_CODE && resultCode == Activity.RESULT_OK) {
            try {
                Uri selectedImage = Uri.parse(data.getDataString());

                reducedSizeBitmap = MediaStore.Images.Media.getBitmap(
                        getApplicationContext().getContentResolver(),
                        selectedImage);
                ImgPhoto.setImageBitmap(reducedSizeBitmap);

            } catch (Exception e) {
                Toast.makeText(this, "Error while selecting Image", Toast.LENGTH_LONG).show();
            }
        }
    }

    private void uploadImage(boolean profilePhoto) {

        if (!(reducedSizeBitmap == null)) {
            reducedSizeBitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
            byte[] byteArray = stream.toByteArray();
            this.restaurantService.addRestaurantImage(byteArray, profilePhoto);
        }
    }
}

Большое спасибо за вашу помощь .. :-)

Ответы на вопрос(1)

Ваш ответ на вопрос