bonjour

j'ai besoin de vous je suis bloqué sur se problème
Nom : 20201121_171726.jpg
Affichages : 223
Taille : 87,5 Ko

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

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package fr.galatro.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

pour moi sa viens de la !

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
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);
        }

merci a vous