9
0
mirror of https://gitee.com/shuto/customCamera.git synced 2026-05-02 00:07:24 +08:00

Masquage/reaffichage des icones de flash quand la photo est prise ou refusee.

This commit is contained in:
Thomas BOY
2015-01-28 16:29:34 +01:00
parent a150d5f0e3
commit 77742b8993
@@ -578,7 +578,13 @@ public class CameraActivity extends Activity {
*/
public void takePhoto() {
ImageButton imgIcon = (ImageButton)findViewById(R.id.capture);
ImageButton flash = (ImageButton)findViewById(R.id.flash);
ImageButton flashAuto = (ImageButton)findViewById(R.id.flashAuto);
ImageButton noFlash = (ImageButton)findViewById(R.id.noFlash);
imgIcon.setEnabled(false);
flash.setVisibility(View.INVISIBLE);
flashAuto.setVisibility(View.INVISIBLE);
noFlash.setVisibility(View.INVISIBLE);
// Handles the moment where picture is taken
ShutterCallback shutterCallback = new ShutterCallback() {
public void onShutter() {
@@ -721,7 +727,13 @@ public class CameraActivity extends Activity {
*/
public void declinePhoto(View view) {
ImageButton imgIcon = (ImageButton)findViewById(R.id.capture);
ImageButton flash = (ImageButton)findViewById(R.id.flash);
ImageButton flashAuto = (ImageButton)findViewById(R.id.flashAuto);
ImageButton noFlash = (ImageButton)findViewById(R.id.noFlash);
imgIcon.setEnabled(true);
flash.setVisibility(View.VISIBLE);
flashAuto.setVisibility(View.VISIBLE);
noFlash.setVisibility(View.VISIBLE);
photoTaken = null;
displayPicture();
}