Aide sur plusieurs bouton capture photo

  • Réponses :0
Adrien ga
  • Posts de Forum 2

23 nov. 2020 à 09:26:45 via site

bonjour

j'ai besoin de vous je suis bloqué sur se problème!

image

Quand je clic sur prendre photo 1 sa m’ouvre appareil photo sa prend la photo et sa me la mais sur tout les autre imageview

`package fr.galo.adrien.dpartmodule;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.content.Intent;
import android.graphics.Bitmap;
import android.provider.MediaStore;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {

    public Button BtnPrendrePhoto1;
    public Button BtnPrendrePhoto2;
    public Button BtnPrendrePhoto3;
    public Button BtnPrendrePhoto4;

    public ImageView imgAffichePhoto1;
    public ImageView imgAffichePhoto2;
    public ImageView imgAffichePhoto3;
    public ImageView imgAffichePhoto4;

    public String photoPath = null;

    public static final int REQUEST_ID_IMAGE_CAPTURE = 1000;


    @Override
    public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);


            this.BtnPrendrePhoto1 = (Button) this.findViewById(R.id.PrendrePhoto1);
            this.BtnPrendrePhoto2 = (Button) this.findViewById(R.id.PrendrePhoto2);
            this.BtnPrendrePhoto3 = (Button) this.findViewById(R.id.BtnPrendrePhoto3);
            this.BtnPrendrePhoto4 = (Button) this.findViewById(R.id.BtnPrendrePhoto4);

            this.imgAffichePhoto1 = (ImageView) this.findViewById(R.id.AffichePhoto1);
            this.imgAffichePhoto2 = (ImageView) this.findViewById(R.id.AffichePhoto2);
            this.imgAffichePhoto3 = (ImageView) this.findViewById(R.id.imgAffichePhoto3);
            this.imgAffichePhoto4 = (ImageView) this.findViewById(R.id.imgAffichePhoto4);


            this.BtnPrendrePhoto1.setOnClickListener(new Button.OnClickListener() {

                    public void onClick(View v) {
                            captureImage(imgAffichePhoto1);

                    }
            });

            this.BtnPrendrePhoto2.setOnClickListener(new Button.OnClickListener() {

                    public void onClick(View v) {
                            captureImage(imgAffichePhoto2);

                    }
            });
            this.BtnPrendrePhoto3.setOnClickListener(new Button.OnClickListener() {

                    public void onClick(View v) {
                            captureImage(imgAffichePhoto3);

                    }
            });
            this.BtnPrendrePhoto4.setOnClickListener(new Button.OnClickListener() {

                    public void onClick(View v) {
                            captureImage(imgAffichePhoto4);

                    }
            });



    }


    private void captureImage(ImageView imageView) {
            // Create an implicit intent, for image capture.
            Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

            // Start camera and wait for the results.
            this.startActivityForResult(intent, REQUEST_ID_IMAGE_CAPTURE);
    }

    // When results returned
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
            super.onActivityResult(requestCode, resultCode, data);

            if (requestCode == REQUEST_ID_IMAGE_CAPTURE) {
                    if (resultCode == RESULT_OK) {
                            Bitmap bp = (Bitmap) data.getExtras().get("data");
                            this.imgAffichePhoto1.setImageBitmap(bp);

                    } else if (resultCode == RESULT_CANCELED) {
                            Toast.makeText(this, "Action canceled", Toast.LENGTH_LONG).show();
                    } else {
                            Toast.makeText(this, "Action Failed", Toast.LENGTH_LONG).show();
                    }

            }
            super.onActivityResult(requestCode, resultCode, data);

            if (requestCode == REQUEST_ID_IMAGE_CAPTURE) {
                    if (resultCode == RESULT_OK) {
                            Bitmap bp = (Bitmap) data.getExtras().get("data");
                            this.imgAffichePhoto2.setImageBitmap(bp);

                    } else if (resultCode == RESULT_CANCELED) {
                            Toast.makeText(this, "Action canceled", Toast.LENGTH_LONG).show();
                    } else {
                            Toast.makeText(this, "Action Failed", Toast.LENGTH_LONG).show();
                    }


            }
    }

}`

ou et mon problème merci de votre aide

Soyez le premier à répondre!