take picture from camera and choose from gallery and display in Image view

后端 未结 3 1388
醉梦人生
醉梦人生 2020-12-06 08:43

I want to take photos from gallery and set it in my ImageView as well as I want to take photo from camera and set it into my same Image View.

I am very much stuck on

3条回答
  •  一个人的身影
    2020-12-06 08:51

    You can handle your camera view click this way:

    cameraImageView.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
                startActivityForResult(intent, 0);
    
            }
        });
    

    Do this in your activity when you return after capturing image.

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
    
        if(requestCode == 0)
        {
            if(data != null)
            {
                Bitmap photo = (Bitmap) data.getExtras().get("data");
                photo = Bitmap.createScaledBitmap(photo, 80, 80, false);
                imageView.setImageBitmap(photo);
            }
            else{
            }
        }
    }
    

提交回复
热议问题