CameraActivity.java revision 5e255bfd80a12dbe4d0a02a80f89238a5e7a1345
1/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.camera;
18
19import android.animation.Animator;
20import android.annotation.TargetApi;
21import android.app.ActionBar;
22import android.app.Activity;
23import android.app.AlertDialog;
24import android.app.Dialog;
25import android.content.ActivityNotFoundException;
26import android.content.BroadcastReceiver;
27import android.content.ContentResolver;
28import android.content.Context;
29import android.content.Intent;
30import android.content.IntentFilter;
31import android.content.SharedPreferences;
32import android.content.pm.ActivityInfo;
33import android.content.pm.PackageManager;
34import android.content.res.Configuration;
35import android.graphics.Bitmap;
36import android.graphics.Matrix;
37import android.graphics.Point;
38import android.graphics.SurfaceTexture;
39import android.graphics.drawable.ColorDrawable;
40import android.graphics.drawable.Drawable;
41import android.net.Uri;
42import android.nfc.NfcAdapter;
43import android.nfc.NfcAdapter.CreateBeamUrisCallback;
44import android.nfc.NfcEvent;
45import android.os.Build;
46import android.os.Bundle;
47import android.os.Handler;
48import android.os.HandlerThread;
49import android.os.Looper;
50import android.os.Message;
51import android.preference.PreferenceManager;
52import android.provider.MediaStore;
53import android.provider.Settings;
54import android.util.CameraPerformanceTracker;
55import android.util.Log;
56import android.view.ContextMenu;
57import android.view.ContextMenu.ContextMenuInfo;
58import android.view.KeyEvent;
59import android.view.Menu;
60import android.view.MenuInflater;
61import android.view.MenuItem;
62import android.view.MotionEvent;
63import android.view.View;
64import android.view.ViewGroup;
65import android.view.Window;
66import android.view.WindowManager;
67import android.widget.FrameLayout;
68import android.widget.ImageView;
69import android.widget.ShareActionProvider;
70
71import com.android.camera.app.AppController;
72import com.android.camera.app.CameraAppUI;
73import com.android.camera.app.CameraController;
74import com.android.camera.app.CameraManager;
75import com.android.camera.app.CameraManagerFactory;
76import com.android.camera.app.CameraProvider;
77import com.android.camera.app.CameraServices;
78import com.android.camera.app.LocationManager;
79import com.android.camera.app.ModuleManagerImpl;
80import com.android.camera.app.OrientationManager;
81import com.android.camera.app.OrientationManagerImpl;
82import com.android.camera.data.CameraDataAdapter;
83import com.android.camera.data.FixedLastDataAdapter;
84import com.android.camera.data.LocalData;
85import com.android.camera.data.LocalDataAdapter;
86import com.android.camera.data.LocalDataUtil;
87import com.android.camera.data.LocalMediaObserver;
88import com.android.camera.data.MediaDetails;
89import com.android.camera.data.PanoramaMetadataLoader;
90import com.android.camera.data.RgbzMetadataLoader;
91import com.android.camera.data.SimpleViewData;
92import com.android.camera.filmstrip.FilmstripContentPanel;
93import com.android.camera.filmstrip.FilmstripController;
94import com.android.camera.hardware.HardwareSpec;
95import com.android.camera.hardware.HardwareSpecImpl;
96import com.android.camera.module.ModuleController;
97import com.android.camera.module.ModulesInfo;
98import com.android.camera.session.CaptureSessionManager;
99import com.android.camera.session.CaptureSessionManager.SessionListener;
100import com.android.camera.settings.CameraSettingsActivity;
101import com.android.camera.settings.SettingsManager;
102import com.android.camera.settings.SettingsManager.SettingsCapabilities;
103import com.android.camera.settings.SettingsUtil;
104import com.android.camera.tinyplanet.TinyPlanetFragment;
105import com.android.camera.ui.AbstractTutorialOverlay;
106import com.android.camera.ui.DetailsDialog;
107import com.android.camera.ui.MainActivityLayout;
108import com.android.camera.ui.ModeListView;
109import com.android.camera.ui.ModeListView.ModeListVisibilityChangedListener;
110import com.android.camera.ui.PreviewStatusListener;
111import com.android.camera.util.ApiHelper;
112import com.android.camera.util.Callback;
113import com.android.camera.util.CameraUtil;
114import com.android.camera.util.FeedbackHelper;
115import com.android.camera.util.GalleryHelper;
116import com.android.camera.util.GcamHelper;
117import com.android.camera.util.IntentHelper;
118import com.android.camera.util.PhotoSphereHelper.PanoramaViewHelper;
119import com.android.camera.util.ReleaseDialogHelper;
120import com.android.camera.util.UsageStatistics;
121import com.android.camera.widget.FilmstripView;
122import com.android.camera2.R;
123import com.google.common.logging.eventprotos;
124import com.google.common.logging.eventprotos.CameraEvent.InteractionCause;
125import com.google.common.logging.eventprotos.NavigationChange;
126
127import java.io.File;
128import java.io.FileInputStream;
129import java.io.FileNotFoundException;
130import java.lang.ref.WeakReference;
131import java.util.ArrayList;
132import java.util.List;
133
134public class CameraActivity extends Activity
135        implements AppController, CameraManager.CameraOpenCallback,
136        ActionBar.OnMenuVisibilityListener, ShareActionProvider.OnShareTargetSelectedListener,
137        OrientationManager.OnOrientationChangeListener {
138
139    private static final String TAG = "CameraActivity";
140
141    private static final String INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE =
142            "android.media.action.STILL_IMAGE_CAMERA_SECURE";
143    public static final String ACTION_IMAGE_CAPTURE_SECURE =
144            "android.media.action.IMAGE_CAPTURE_SECURE";
145
146    // The intent extra for camera from secure lock screen. True if the gallery
147    // should only show newly captured pictures. sSecureAlbumId does not
148    // increment. This is used when switching between camera, camcorder, and
149    // panorama. If the extra is not set, it is in the normal camera mode.
150    public static final String SECURE_CAMERA_EXTRA = "secure_camera";
151
152    /**
153     * Request code from an activity we started that indicated that we do not
154     * want to reset the view to the preview in onResume.
155     */
156    public static final int REQ_CODE_DONT_SWITCH_TO_PREVIEW = 142;
157
158    public static final int REQ_CODE_GCAM_DEBUG_POSTCAPTURE = 999;
159
160    private static final int MSG_CLEAR_SCREEN_ON_FLAG = 2;
161    private static final long SCREEN_DELAY_MS = 2 * 60 * 1000; // 2 mins.
162    private static final int MAX_PEEK_BITMAP_PIXELS = 1600000; // 1.6 * 4 MBs.
163
164    /** Should be used wherever a context is needed. */
165    private Context mAppContext;
166
167    /**
168     * Whether onResume should reset the view to the preview.
169     */
170    private boolean mResetToPreviewOnResume = true;
171
172    /**
173     * This data adapter is used by FilmStripView.
174     */
175    private LocalDataAdapter mDataAdapter;
176
177    /**
178     * TODO: This should be moved to the app level.
179     */
180    private SettingsManager mSettingsManager;
181
182    private ModeListView mModeListView;
183    private boolean mModeListVisible = false;
184    private int mCurrentModeIndex;
185    private CameraModule mCurrentModule;
186    private ModuleManagerImpl mModuleManager;
187    private FrameLayout mAboveFilmstripControlLayout;
188    private FilmstripController mFilmstripController;
189    private boolean mFilmstripVisible;
190    /** Whether the filmstrip fully covers the preview. */
191    private boolean mFilmstripCoversPreview = false;
192    private int mResultCodeForTesting;
193    private Intent mResultDataForTesting;
194    private OnScreenHint mStorageHint;
195    private long mStorageSpaceBytes = Storage.LOW_STORAGE_THRESHOLD_BYTES;
196    private boolean mAutoRotateScreen;
197    private boolean mSecureCamera;
198    private int mLastRawOrientation;
199    private OrientationManagerImpl mOrientationManager;
200    private LocationManager mLocationManager;
201    private ButtonManager mButtonManager;
202    private Handler mMainHandler;
203    private PanoramaViewHelper mPanoramaViewHelper;
204    private ActionBar mActionBar;
205    private ViewGroup mUndoDeletionBar;
206    private boolean mIsUndoingDeletion = false;
207
208    private final Uri[] mNfcPushUris = new Uri[1];
209
210    private LocalMediaObserver mLocalImagesObserver;
211    private LocalMediaObserver mLocalVideosObserver;
212
213    private boolean mPendingDeletion = false;
214
215    private CameraController mCameraController;
216    private boolean mPaused;
217    private CameraAppUI mCameraAppUI;
218
219    private PeekAnimationHandler mPeekAnimationHandler;
220    private HandlerThread mPeekAnimationThread;
221
222    private FeedbackHelper mFeedbackHelper;
223
224    private Intent mGalleryIntent;
225    private long mOnCreateTime;
226
227    private Menu mActionBarMenu;
228
229    @Override
230    public CameraAppUI getCameraAppUI() {
231        return mCameraAppUI;
232    }
233
234    // close activity when screen turns off
235    private final BroadcastReceiver mScreenOffReceiver = new BroadcastReceiver() {
236        @Override
237        public void onReceive(Context context, Intent intent) {
238            finish();
239        }
240    };
241
242    /**
243     * Whether the screen is kept turned on.
244     */
245    private boolean mKeepScreenOn;
246    private int mLastLayoutOrientation;
247    private final CameraAppUI.BottomPanel.Listener mMyFilmstripBottomControlListener =
248            new CameraAppUI.BottomPanel.Listener() {
249
250                /**
251                 * If the current photo is a photo sphere, this will launch the
252                 * Photo Sphere panorama viewer.
253                 */
254                @Override
255                public void onExternalViewer() {
256                    if (mPanoramaViewHelper == null) {
257                        return;
258                    }
259                    final LocalData data = getCurrentLocalData();
260                    if (data == null) {
261                        return;
262                    }
263                    final Uri contentUri = data.getContentUri();
264                    if (contentUri == Uri.EMPTY) {
265                        return;
266                    }
267
268                    if (PanoramaMetadataLoader.isPanoramaAndUseViewer(data)) {
269                        mPanoramaViewHelper.showPanorama(CameraActivity.this, contentUri);
270                    } else if (RgbzMetadataLoader.hasRGBZData(data)) {
271                        mPanoramaViewHelper.showRgbz(contentUri);
272                    }
273                }
274
275                @Override
276                public void onEdit() {
277                    LocalData data = getCurrentLocalData();
278                    if (data == null) {
279                        return;
280                    }
281                    launchEditor(data);
282                }
283
284                @Override
285                public void onTinyPlanet() {
286                    LocalData data = getCurrentLocalData();
287                    if (data == null) {
288                        return;
289                    }
290                    launchTinyPlanetEditor(data);
291                }
292
293                @Override
294                public void onDelete() {
295                    final int currentDataId = getCurrentDataId();
296                    UsageStatistics.photoInteraction(
297                            UsageStatistics.hashFileName(fileNameFromDataID(currentDataId)),
298                            eventprotos.CameraEvent.InteractionType.DELETE,
299                            InteractionCause.BUTTON);
300                    removeData(currentDataId);
301                }
302
303                @Override
304                public void onShare() {
305                    final LocalData data = getCurrentLocalData();
306
307                    // If applicable, show release information before this item
308                    // is shared.
309                    if (PanoramaMetadataLoader.isPanorama(data)
310                            || RgbzMetadataLoader.hasRGBZData(data)) {
311                        ReleaseDialogHelper.showReleaseInfoDialog(CameraActivity.this,
312                                new Callback<Void>() {
313                                    @Override
314                                    public void onCallback(Void result) {
315                                        share(data);
316                                    }
317                                });
318                    } else {
319                        share(data);
320                    }
321                }
322
323                private void share(LocalData data) {
324                    Intent shareIntent = getShareIntentByData(data);
325                    if (shareIntent != null) {
326                        try {
327                            launchActivityByIntent(shareIntent);
328                            mCameraAppUI.getFilmstripBottomControls().setShareEnabled(false);
329                        } catch (ActivityNotFoundException ex) {
330                            // Nothing.
331                        }
332                    }
333                }
334
335                private int getCurrentDataId() {
336                    return mFilmstripController.getCurrentId();
337                }
338
339                private LocalData getCurrentLocalData() {
340                    return mDataAdapter.getLocalData(getCurrentDataId());
341                }
342
343                /**
344                 * Sets up the share intent and NFC properly according to the
345                 * data.
346                 *
347                 * @param data The data to be shared.
348                 */
349                private Intent getShareIntentByData(final LocalData data) {
350                    Intent intent = null;
351                    final Uri contentUri = data.getContentUri();
352                    if (PanoramaMetadataLoader.isPanorama360(data) &&
353                            data.getContentUri() != Uri.EMPTY) {
354                        intent = new Intent(Intent.ACTION_SEND);
355                        intent.setType("application/vnd.google.panorama360+jpg");
356                        intent.putExtra(Intent.EXTRA_STREAM, contentUri);
357                    } else if (data.isDataActionSupported(LocalData.DATA_ACTION_SHARE)) {
358                        final String mimeType = data.getMimeType();
359                        intent = getShareIntentFromType(mimeType);
360                        if (intent != null) {
361                            intent.putExtra(Intent.EXTRA_STREAM, contentUri);
362                            intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
363                        }
364                        intent = Intent.createChooser(intent, null);
365                    }
366                    return intent;
367                }
368
369                /**
370                 * Get the share intent according to the mimeType
371                 *
372                 * @param mimeType The mimeType of current data.
373                 * @return the video/image's ShareIntent or null if mimeType is
374                 *         invalid.
375                 */
376                private Intent getShareIntentFromType(String mimeType) {
377                    // Lazily create the intent object.
378                    Intent intent = new Intent(Intent.ACTION_SEND);
379                    if (mimeType.startsWith("video/")) {
380                        intent.setType("video/*");
381                    } else {
382                        if (mimeType.startsWith("image/")) {
383                            intent.setType("image/*");
384                        } else {
385                            Log.w(TAG, "unsupported mimeType " + mimeType);
386                        }
387                    }
388                    return intent;
389                }
390
391                @Override
392                public void onProgressErrorClicked() {
393                    LocalData data = getCurrentLocalData();
394                    getServices().getCaptureSessionManager().removeErrorMessage(
395                            data.getContentUri());
396                    updateBottomControlsByData(data);
397                }
398            };
399
400    private ComboPreferences mPreferences;
401
402    @Override
403    public void onCameraOpened(CameraManager.CameraProxy camera) {
404        /**
405         * The current UI requires that the flash option visibility in front-facing
406         * camera be
407         *   * disabled if back facing camera supports flash
408         *   * hidden if back facing camera does not support flash
409         * We save whether back facing camera supports flash because we cannot get
410         * this in front facing camera without a camera switch.
411         *
412         * If this preference is cleared, we also need to clear the camera facing
413         * setting so we default to opening the camera in back facing camera, and
414         * can save this flash support value again.
415         */
416        if (!mSettingsManager.isSet(SettingsManager.SETTING_FLASH_SUPPORTED_BACK_CAMERA)) {
417            HardwareSpec hardware = new HardwareSpecImpl(camera.getParameters());
418            mSettingsManager.setBoolean(SettingsManager.SETTING_FLASH_SUPPORTED_BACK_CAMERA,
419                hardware.isFlashSupported());
420        }
421
422        if (!mModuleManager.getModuleAgent(mCurrentModeIndex).requestAppForCamera()) {
423            // We shouldn't be here. Just close the camera and leave.
424            camera.release(false);
425            throw new IllegalStateException("Camera opened but the module shouldn't be " +
426                    "requesting");
427        }
428        if (mCurrentModule != null) {
429            SettingsCapabilities capabilities =
430                    SettingsUtil.getSettingsCapabilities(camera);
431            mSettingsManager.changeCamera(camera.getCameraId(), capabilities);
432            mCurrentModule.onCameraAvailable(camera);
433        }
434        mCameraAppUI.onChangeCamera();
435    }
436
437    @Override
438    public void onCameraDisabled(int cameraId) {
439        UsageStatistics.cameraFailure(eventprotos.CameraFailure.FailureReason.SECURITY);
440
441        CameraUtil.showErrorAndFinish(this, R.string.camera_disabled);
442    }
443
444    @Override
445    public void onDeviceOpenFailure(int cameraId) {
446        UsageStatistics.cameraFailure(eventprotos.CameraFailure.FailureReason.OPEN_FAILURE);
447
448        CameraUtil.showErrorAndFinish(this, R.string.cannot_connect_camera);
449    }
450
451    @Override
452    public void onDeviceOpenedAlready(int cameraId) {
453        CameraUtil.showErrorAndFinish(this, R.string.cannot_connect_camera);
454    }
455
456    @Override
457    public void onReconnectionFailure(CameraManager mgr) {
458        UsageStatistics.cameraFailure(eventprotos.CameraFailure.FailureReason.RECONNECT_FAILURE);
459
460        CameraUtil.showErrorAndFinish(this, R.string.cannot_connect_camera);
461    }
462
463    private static class MainHandler extends Handler {
464        final WeakReference<CameraActivity> mActivity;
465
466        public MainHandler(CameraActivity activity, Looper looper) {
467            super(looper);
468            mActivity = new WeakReference<CameraActivity>(activity);
469        }
470
471        @Override
472        public void handleMessage(Message msg) {
473            CameraActivity activity = mActivity.get();
474            if (activity == null) {
475                return;
476            }
477            switch (msg.what) {
478
479                case MSG_CLEAR_SCREEN_ON_FLAG: {
480                    if (!activity.mPaused) {
481                        activity.getWindow().clearFlags(
482                                WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
483                    }
484                    break;
485                }
486            }
487        }
488    }
489
490    private String fileNameFromDataID(int dataID) {
491        final LocalData localData = mDataAdapter.getLocalData(dataID);
492
493        File localFile = new File(localData.getPath());
494        return localFile.getName();
495    }
496
497    private final FilmstripContentPanel.Listener mFilmstripListener =
498            new FilmstripContentPanel.Listener() {
499
500                @Override
501                public void onSwipeOut() {
502                    UsageStatistics.changeScreen(eventprotos.NavigationChange.Mode.PHOTO_CAPTURE,
503                            eventprotos.CameraEvent.InteractionCause.SWIPE_RIGHT);
504                }
505
506                @Override
507                public void onSwipeOutBegin() {
508                    mActionBar.hide();
509                    mFilmstripCoversPreview = false;
510                    updatePreviewVisibility();
511                }
512
513                @Override
514                public void onFilmstripHidden() {
515                    mFilmstripVisible = false;
516                    CameraActivity.this.setFilmstripUiVisibility(false);
517                    // When the user hide the filmstrip (either swipe out or
518                    // tap on back key) we move to the first item so next time
519                    // when the user swipe in the filmstrip, the most recent
520                    // one is shown.
521                    mFilmstripController.goToFirstItem();
522                }
523
524                @Override
525                public void onFilmstripShown() {
526                    mFilmstripVisible = true;
527                    decrementPeekAnimPlayTimes();
528                    updateUiByData(mFilmstripController.getCurrentId());
529                }
530
531                @Override
532                public void onFocusedDataLongPressed(int dataId) {
533                    // Do nothing.
534                }
535
536                @Override
537                public void onFocusedDataPromoted(int dataID) {
538                    UsageStatistics.photoInteraction(
539                            UsageStatistics.hashFileName(fileNameFromDataID(dataID)),
540                            eventprotos.CameraEvent.InteractionType.DELETE,
541                            InteractionCause.SWIPE_UP);
542
543                    removeData(dataID);
544                }
545
546                @Override
547                public void onFocusedDataDemoted(int dataID) {
548                    UsageStatistics.photoInteraction(
549                            UsageStatistics.hashFileName(fileNameFromDataID(dataID)),
550                            eventprotos.CameraEvent.InteractionType.DELETE,
551                            InteractionCause.SWIPE_DOWN);
552
553                    removeData(dataID);
554                }
555
556                @Override
557                public void onEnterFullScreenUiShown(int dataId) {
558                    if (mFilmstripVisible) {
559                        CameraActivity.this.setFilmstripUiVisibility(true);
560                    }
561                }
562
563                @Override
564                public void onLeaveFullScreenUiShown(int dataId) {
565                    // Do nothing.
566                }
567
568                @Override
569                public void onEnterFullScreenUiHidden(int dataId) {
570                    if (mFilmstripVisible) {
571                        CameraActivity.this.setFilmstripUiVisibility(false);
572                    }
573                }
574
575                @Override
576                public void onLeaveFullScreenUiHidden(int dataId) {
577                    // Do nothing.
578                }
579
580                @Override
581                public void onEnterFilmstrip(int dataId) {
582                    if (mFilmstripVisible) {
583                        CameraActivity.this.setFilmstripUiVisibility(true);
584                    }
585                }
586
587                @Override
588                public void onLeaveFilmstrip(int dataId) {
589                    // Do nothing.
590                }
591
592                @Override
593                public void onDataReloaded() {
594                    if (!mFilmstripVisible) {
595                        return;
596                    }
597                    updateUiByData(mFilmstripController.getCurrentId());
598                }
599
600                @Override
601                public void onDataUpdated(int dataId) {
602                    if (!mFilmstripVisible) {
603                        return;
604                    }
605                    updateUiByData(mFilmstripController.getCurrentId());
606                }
607
608                @Override
609                public void onEnterZoomView(int dataID) {
610                    if (mFilmstripVisible) {
611                        CameraActivity.this.setFilmstripUiVisibility(false);
612                    }
613                }
614
615                @Override
616                public void onDataFocusChanged(final int prevDataId, final int newDataId) {
617                    if (!mFilmstripVisible) {
618                        return;
619                    }
620                    // TODO: This callback is UI event callback, should always
621                    // happen on UI thread. Find the reason for this
622                    // runOnUiThread() and fix it.
623                    runOnUiThread(new Runnable() {
624                        @Override
625                        public void run() {
626                            updateUiByData(newDataId);
627                        }
628                    });
629                }
630            };
631
632    private final LocalDataAdapter.LocalDataListener mLocalDataListener =
633            new LocalDataAdapter.LocalDataListener() {
634                @Override
635                public void onMetadataUpdated(List<Integer> updatedData) {
636                    int currentDataId = mFilmstripController.getCurrentId();
637                    for (Integer dataId : updatedData) {
638                        if (dataId == currentDataId) {
639                            updateBottomControlsByData(mDataAdapter.getLocalData(dataId));
640                        }
641                    }
642                }
643
644                @Override
645                public void onNewDataAdded(LocalData data) {
646                    startPeekAnimation(data);
647                }
648            };
649
650    public void gotoGallery() {
651        UsageStatistics.changeScreen(NavigationChange.Mode.FILMSTRIP,
652                InteractionCause.BUTTON);
653
654        mFilmstripController.goToNextItem();
655    }
656
657    /**
658     * If 'visible' is false, this hides the action bar and switches the
659     * filmstrip UI to lights-out mode.
660     *
661     * @param visible is false, this hides the action bar and switches the
662     *            filmstrip UI to lights-out mode.
663     */
664    private void setFilmstripUiVisibility(boolean visible) {
665        int currentSystemUIVisibility = mAboveFilmstripControlLayout.getSystemUiVisibility();
666        int newSystemUIVisibility = (visible ? View.SYSTEM_UI_FLAG_VISIBLE
667                : View.SYSTEM_UI_FLAG_FULLSCREEN);
668        if (newSystemUIVisibility != currentSystemUIVisibility) {
669            mAboveFilmstripControlLayout.setSystemUiVisibility(newSystemUIVisibility);
670        }
671
672        mCameraAppUI.getFilmstripBottomControls().setVisible(visible);
673        if (visible != mActionBar.isShowing()) {
674            if (visible) {
675                mActionBar.show();
676            } else {
677                mActionBar.hide();
678            }
679        }
680        mFilmstripCoversPreview = visible;
681        updatePreviewVisibility();
682    }
683
684    private void hideSessionProgress() {
685        mCameraAppUI.getFilmstripBottomControls().hideProgress();
686    }
687
688    private void showSessionProgress(CharSequence message) {
689        CameraAppUI.BottomPanel controls =  mCameraAppUI.getFilmstripBottomControls();
690        controls.setProgressText(message);
691        controls.hideControls();
692        controls.hideProgressError();
693        controls.showProgress();
694    }
695
696    private void showProcessError(CharSequence message) {
697        mCameraAppUI.getFilmstripBottomControls().showProgressError(message);
698    }
699
700    private void updateSessionProgress(int progress) {
701        mCameraAppUI.getFilmstripBottomControls().setProgress(progress);
702    }
703
704    @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
705    private void setupNfcBeamPush() {
706        NfcAdapter adapter = NfcAdapter.getDefaultAdapter(mAppContext);
707        if (adapter == null) {
708            return;
709        }
710
711        if (!ApiHelper.HAS_SET_BEAM_PUSH_URIS) {
712            // Disable beaming
713            adapter.setNdefPushMessage(null, CameraActivity.this);
714            return;
715        }
716
717        adapter.setBeamPushUris(null, CameraActivity.this);
718        adapter.setBeamPushUrisCallback(new CreateBeamUrisCallback() {
719            @Override
720            public Uri[] createBeamUris(NfcEvent event) {
721                return mNfcPushUris;
722            }
723        }, CameraActivity.this);
724    }
725
726    @Override
727    public void onMenuVisibilityChanged(boolean isVisible) {
728        // TODO: Remove this or bring back the original implementation: cancel
729        // auto-hide actionbar.
730    }
731
732    @Override
733    public boolean onShareTargetSelected(ShareActionProvider shareActionProvider, Intent intent) {
734        int currentDataId = mFilmstripController.getCurrentId();
735        if (currentDataId < 0) {
736            return false;
737        }
738        UsageStatistics.photoInteraction(
739                UsageStatistics.hashFileName(fileNameFromDataID(currentDataId)),
740                eventprotos.CameraEvent.InteractionType.SHARE,
741                InteractionCause.BUTTON);
742        // TODO add intent.getComponent().getPackageName()
743        return true;
744    }
745
746    // Note: All callbacks come back on the main thread.
747    private final SessionListener mSessionListener =
748            new SessionListener() {
749                @Override
750                public void onSessionQueued(final Uri uri) {
751                    notifyNewMedia(uri);
752                }
753
754                @Override
755                public void onSessionDone(final Uri uri) {
756                    Log.v(TAG, "onSessionDone:" + uri);
757                    mDataAdapter.finishSession(uri);
758                }
759
760                @Override
761                public void onSessionProgress(final Uri uri, final int progress) {
762                    if (progress < 0) {
763                        // Do nothing, there is no task for this URI.
764                        return;
765                    }
766                    int currentDataId = mFilmstripController.getCurrentId();
767                    if (currentDataId == -1) {
768                        return;
769                    }
770                    if (uri.equals(
771                            mDataAdapter.getLocalData(currentDataId).getContentUri())) {
772                        updateSessionProgress(progress);
773                    }
774                }
775
776                @Override
777                public void onSessionUpdated(Uri uri) {
778                    mDataAdapter.refresh(uri);
779                }
780
781                @Override
782                public void onSessionFailed(Uri uri, CharSequence reason) {
783                    Log.v(TAG, "onSessionFailed:" + uri);
784
785                    int failedDataId = mDataAdapter.findDataByContentUri(uri);
786                    int currentDataId = mFilmstripController.getCurrentId();
787
788                    if (currentDataId == failedDataId) {
789                        updateSessionProgress(0);
790                        showProcessError(reason);
791                    }
792                    // HERE
793                    mDataAdapter.refresh(uri);
794                }
795            };
796
797    @Override
798    public Context getAndroidContext() {
799        return mAppContext;
800    }
801
802    @Override
803    public void launchActivityByIntent(Intent intent) {
804        startActivityForResult(intent, REQ_CODE_DONT_SWITCH_TO_PREVIEW);
805    }
806
807    @Override
808    public int getCurrentModuleIndex() {
809        return mCurrentModeIndex;
810    }
811
812    @Override
813    public ModuleController getCurrentModuleController() {
814        return mCurrentModule;
815    }
816
817    @Override
818    public int getQuickSwitchToModuleId(int currentModuleIndex) {
819        return mModuleManager.getQuickSwitchToModuleId(currentModuleIndex, mSettingsManager,
820                mAppContext);
821    }
822
823    @Override
824    public SurfaceTexture getPreviewBuffer() {
825        // TODO: implement this
826        return null;
827    }
828
829    @Override
830    public void onPreviewReadyToStart() {
831        mCameraAppUI.onPreviewReadyToStart();
832    }
833
834    @Override
835    public void onPreviewStarted() {
836        mCameraAppUI.onPreviewStarted();
837    }
838
839    @Override
840    public void addPreviewAreaSizeChangedListener(
841            PreviewStatusListener.PreviewAreaChangedListener listener) {
842        mCameraAppUI.addPreviewAreaChangedListener(listener);
843    }
844
845    @Override
846    public void removePreviewAreaSizeChangedListener(
847            PreviewStatusListener.PreviewAreaChangedListener listener) {
848        mCameraAppUI.removePreviewAreaChangedListener(listener);
849    }
850
851    @Override
852    public void setupOneShotPreviewListener() {
853        mCameraController.setOneShotPreviewCallback(mMainHandler,
854                new CameraManager.CameraPreviewDataCallback() {
855                    @Override
856                    public void onPreviewFrame(byte[] data, CameraManager.CameraProxy camera) {
857                        mCurrentModule.onPreviewInitialDataReceived();
858                        mCameraAppUI.onNewPreviewFrame();
859                    }
860                });
861    }
862
863    @Override
864    public void updatePreviewAspectRatio(float aspectRatio) {
865        mCameraAppUI.updatePreviewAspectRatio(aspectRatio);
866    }
867
868    @Override
869    public boolean shouldShowShimmy() {
870        int remainingTimes = mSettingsManager.getInt(
871                SettingsManager.SETTING_SHIMMY_REMAINING_PLAY_TIMES_INDEX);
872        return remainingTimes > 0;
873    }
874
875    @Override
876    public void decrementShimmyPlayTimes() {
877        int remainingTimes = mSettingsManager.getInt(
878                SettingsManager.SETTING_SHIMMY_REMAINING_PLAY_TIMES_INDEX) - 1;
879        if (remainingTimes >= 0) {
880            mSettingsManager.setInt(SettingsManager.SETTING_SHIMMY_REMAINING_PLAY_TIMES_INDEX,
881                    remainingTimes);
882        }
883    }
884
885    @Override
886    public void updatePreviewTransform(Matrix matrix) {
887        mCameraAppUI.updatePreviewTransform(matrix);
888    }
889
890    @Override
891    public void setPreviewStatusListener(PreviewStatusListener previewStatusListener) {
892        mCameraAppUI.setPreviewStatusListener(previewStatusListener);
893    }
894
895    @Override
896    public FrameLayout getModuleLayoutRoot() {
897        return mCameraAppUI.getModuleRootView();
898    }
899
900    @Override
901    public void setShutterEventsListener(ShutterEventsListener listener) {
902        // TODO: implement this
903    }
904
905    @Override
906    public void setShutterEnabled(boolean enabled) {
907        // TODO: implement this
908    }
909
910    @Override
911    public boolean isShutterEnabled() {
912        // TODO: implement this
913        return false;
914    }
915
916    @Override
917    public void startPreCaptureAnimation() {
918        mCameraAppUI.startPreCaptureAnimation();
919    }
920
921    @Override
922    public void cancelPreCaptureAnimation() {
923        // TODO: implement this
924    }
925
926    @Override
927    public void startPostCaptureAnimation() {
928        // TODO: implement this
929    }
930
931    @Override
932    public void startPostCaptureAnimation(Bitmap thumbnail) {
933        // TODO: implement this
934    }
935
936    @Override
937    public void cancelPostCaptureAnimation() {
938        // TODO: implement this
939    }
940
941    @Override
942    public OrientationManager getOrientationManager() {
943        return mOrientationManager;
944    }
945
946    @Override
947    public LocationManager getLocationManager() {
948        return mLocationManager;
949    }
950
951    @Override
952    public void lockOrientation() {
953        if (mOrientationManager != null) {
954            mOrientationManager.lockOrientation();
955        }
956    }
957
958    @Override
959    public void unlockOrientation() {
960        if (mOrientationManager != null) {
961            mOrientationManager.unlockOrientation();
962        }
963    }
964
965    /**
966     * Decrement the remaining play times for peek animation.
967     */
968    private void decrementPeekAnimPlayTimes() {
969        int remainingTimes = mSettingsManager.getInt(
970                SettingsManager.SETTING_FILMSTRIP_PEEK_ANIM_REMAINING_PLAY_TIMES_INDEX) - 1;
971        if (remainingTimes < 0) {
972            return;
973        }
974        mSettingsManager
975                .setInt(SettingsManager.SETTING_FILMSTRIP_PEEK_ANIM_REMAINING_PLAY_TIMES_INDEX,
976                        remainingTimes);
977    }
978
979    /**
980     * Starts the filmstrip peek animation if the filmstrip is not visible.
981     * Only {@link LocalData#LOCAL_IMAGE}, {@link
982     * LocalData#LOCAL_IN_PROGRESS_DATA} and {@link
983     * LocalData#LOCAL_VIDEO} are supported.
984     *
985     * @param data The data to peek.
986     */
987    private void startPeekAnimation(final LocalData data) {
988        if (mFilmstripVisible || mPeekAnimationHandler == null) {
989            return;
990        }
991
992        int dataType = data.getLocalDataType();
993        if (dataType != LocalData.LOCAL_IMAGE && dataType != LocalData.LOCAL_IN_PROGRESS_DATA &&
994                dataType != LocalData.LOCAL_VIDEO) {
995            return;
996        }
997
998        int remainingTimes = mSettingsManager.getInt(
999                SettingsManager.SETTING_FILMSTRIP_PEEK_ANIM_REMAINING_PLAY_TIMES_INDEX);
1000        if (remainingTimes <= 0) {
1001            return;
1002        }
1003        mPeekAnimationHandler.startDecodingJob(data, new Callback<Bitmap>() {
1004            @Override
1005            public void onCallback(Bitmap result) {
1006                mCameraAppUI.startPeekAnimation(result, true);
1007            }
1008        });
1009    }
1010
1011    @Override
1012    public void notifyNewMedia(Uri uri) {
1013        if (Storage.isSessionUri(uri)) {
1014            mDataAdapter.addNewSession(uri);
1015        } else {
1016
1017            ContentResolver cr = getContentResolver();
1018            String mimeType = cr.getType(uri);
1019            if (LocalDataUtil.isMimeTypeVideo(mimeType)) {
1020                sendBroadcast(new Intent(CameraUtil.ACTION_NEW_VIDEO, uri));
1021                mDataAdapter.addNewVideo(uri);
1022            } else if (LocalDataUtil.isMimeTypeImage(mimeType)) {
1023                CameraUtil.broadcastNewPicture(mAppContext, uri);
1024                mDataAdapter.addNewPhoto(uri);
1025            } else {
1026                android.util.Log.w(TAG, "Unknown new media with MIME type:"
1027                        + mimeType + ", uri:" + uri);
1028            }
1029        }
1030    }
1031
1032    @Override
1033    public void enableKeepScreenOn(boolean enabled) {
1034        if (mPaused) {
1035            return;
1036        }
1037
1038        mKeepScreenOn = enabled;
1039        if (mKeepScreenOn) {
1040            mMainHandler.removeMessages(MSG_CLEAR_SCREEN_ON_FLAG);
1041            getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
1042        } else {
1043            keepScreenOnForAWhile();
1044        }
1045    }
1046
1047    @Override
1048    public CameraProvider getCameraProvider() {
1049        return mCameraController;
1050    }
1051
1052    private void removeData(int dataID) {
1053        mDataAdapter.removeData(dataID);
1054        if (mDataAdapter.getTotalNumber() > 1) {
1055            showUndoDeletionBar();
1056        } else {
1057            // If camera preview is the only view left in filmstrip,
1058            // no need to show undo bar.
1059            mPendingDeletion = true;
1060            performDeletion();
1061            if (mFilmstripVisible) {
1062                mCameraAppUI.getFilmstripContentPanel().animateHide();
1063            }
1064        }
1065    }
1066
1067    @Override
1068    public boolean onOptionsItemSelected(MenuItem item) {
1069        // Handle presses on the action bar items
1070        switch (item.getItemId()) {
1071            case android.R.id.home:
1072                if (mFilmstripVisible && startGallery()) {
1073                    return true;
1074                }
1075                onBackPressed();
1076                return true;
1077            case R.id.action_details:
1078                showDetailsDialog(mFilmstripController.getCurrentId());
1079                return true;
1080            default:
1081                return super.onOptionsItemSelected(item);
1082        }
1083    }
1084
1085    private boolean isCaptureIntent() {
1086        if (MediaStore.ACTION_VIDEO_CAPTURE.equals(getIntent().getAction())
1087                || MediaStore.ACTION_IMAGE_CAPTURE.equals(getIntent().getAction())
1088                || MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(getIntent().getAction())) {
1089            return true;
1090        } else {
1091            return false;
1092        }
1093    }
1094
1095    private final SettingsManager.StrictUpgradeCallback mStrictUpgradeCallback
1096        = new SettingsManager.StrictUpgradeCallback() {
1097                @Override
1098                public void upgrade(SettingsManager settingsManager, int version) {
1099                    // Show the location dialog on upgrade if
1100                    //  (a) the user has never set this option (status quo).
1101                    //  (b) the user opt'ed out previously.
1102                    if (settingsManager.isSet(SettingsManager.SETTING_RECORD_LOCATION) &&
1103                            !settingsManager.getBoolean(SettingsManager.SETTING_RECORD_LOCATION)) {
1104                        settingsManager.remove(SettingsManager.SETTING_RECORD_LOCATION);
1105                    }
1106                }
1107            };
1108
1109    private final CameraManager.CameraExceptionCallback mCameraDefaultExceptionCallback
1110        = new CameraManager.CameraExceptionCallback() {
1111                @Override
1112                public void onCameraException(RuntimeException e) {
1113                    Log.d(TAG, "Camera Exception", e);
1114                    CameraUtil.showErrorAndFinish(CameraActivity.this,
1115                            R.string.cannot_connect_camera);
1116                }
1117            };
1118
1119    @Override
1120    public void onCreate(Bundle state) {
1121        super.onCreate(state);
1122        CameraPerformanceTracker.onEvent(CameraPerformanceTracker.ACTIVITY_START);
1123        mOnCreateTime = System.currentTimeMillis();
1124        mAppContext = getApplicationContext();
1125        GcamHelper.init(getContentResolver());
1126
1127        getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
1128        setContentView(R.layout.activity_main);
1129        mActionBar = getActionBar();
1130        mActionBar.addOnMenuVisibilityListener(this);
1131        mMainHandler = new MainHandler(this, getMainLooper());
1132        mCameraController =
1133                new CameraController(mAppContext, this, mMainHandler,
1134                        CameraManagerFactory.getAndroidCameraManager());
1135        mCameraController.setCameraDefaultExceptionCallback(mCameraDefaultExceptionCallback,
1136                mMainHandler);
1137
1138        mPreferences = new ComboPreferences(mAppContext);
1139
1140        mSettingsManager = new SettingsManager(mAppContext, this,
1141                mCameraController.getNumberOfCameras(), mStrictUpgradeCallback);
1142
1143        // Remove this after we get rid of ComboPreferences.
1144        int cameraId = Integer.parseInt(mSettingsManager.get(SettingsManager.SETTING_CAMERA_ID));
1145        mPreferences.setLocalId(mAppContext, cameraId);
1146        CameraSettings.upgradeGlobalPreferences(mPreferences,
1147                mCameraController.getNumberOfCameras());
1148        // TODO: Try to move all the resources allocation to happen as soon as
1149        // possible so we can call module.init() at the earliest time.
1150        mModuleManager = new ModuleManagerImpl();
1151        ModulesInfo.setupModules(mAppContext, mModuleManager);
1152
1153        mModeListView = (ModeListView) findViewById(R.id.mode_list_layout);
1154        mModeListView.init(mModuleManager.getSupportedModeIndexList());
1155        if (ApiHelper.HAS_ROTATION_ANIMATION) {
1156            setRotationAnimation();
1157        }
1158        mModeListView.setVisibilityChangedListener(new ModeListVisibilityChangedListener() {
1159            @Override
1160            public void onVisibilityChanged(boolean visible) {
1161                mModeListVisible = visible;
1162                updatePreviewVisibility();
1163            }
1164        });
1165
1166        // Check if this is in the secure camera mode.
1167        Intent intent = getIntent();
1168        String action = intent.getAction();
1169        if (INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE.equals(action)
1170                || ACTION_IMAGE_CAPTURE_SECURE.equals(action)) {
1171            mSecureCamera = true;
1172        } else {
1173            mSecureCamera = intent.getBooleanExtra(SECURE_CAMERA_EXTRA, false);
1174        }
1175
1176        if (mSecureCamera) {
1177            // Foreground event caused by lock screen startup.
1178            // It is necessary to log this in onCreate, to avoid the
1179            // onResume->onPause->onResume sequence.
1180            UsageStatistics.foregrounded(
1181                    eventprotos.ForegroundEvent.ForegroundSource.LOCK_SCREEN);
1182
1183            // Change the window flags so that secure camera can show when
1184            // locked
1185            Window win = getWindow();
1186            WindowManager.LayoutParams params = win.getAttributes();
1187            params.flags |= WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED;
1188            win.setAttributes(params);
1189
1190            // Filter for screen off so that we can finish secure camera
1191            // activity
1192            // when screen is off.
1193            IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_OFF);
1194            registerReceiver(mScreenOffReceiver, filter);
1195        }
1196        mCameraAppUI = new CameraAppUI(this,
1197                (MainActivityLayout) findViewById(R.id.activity_root_view), isCaptureIntent());
1198
1199        mCameraAppUI.setFilmstripBottomControlsListener(mMyFilmstripBottomControlListener);
1200
1201        mAboveFilmstripControlLayout =
1202                (FrameLayout) findViewById(R.id.camera_filmstrip_content_layout);
1203
1204        // Add the session listener so we can track the session progress
1205        // updates.
1206        getServices().getCaptureSessionManager().addSessionListener(mSessionListener);
1207        mFilmstripController = ((FilmstripView) findViewById(R.id.filmstrip_view)).getController();
1208        mFilmstripController.setImageGap(
1209                getResources().getDimensionPixelSize(R.dimen.camera_film_strip_gap));
1210        mPanoramaViewHelper = new PanoramaViewHelper(this);
1211        mPanoramaViewHelper.onCreate();
1212        // Set up the camera preview first so the preview shows up ASAP.
1213        mDataAdapter = new CameraDataAdapter(mAppContext,
1214                new ColorDrawable(getResources().getColor(R.color.photo_placeholder)));
1215        mDataAdapter.setLocalDataListener(mLocalDataListener);
1216
1217        mCameraAppUI.getFilmstripContentPanel().setFilmstripListener(mFilmstripListener);
1218
1219        mLocationManager = new LocationManager(mAppContext);
1220
1221        int modeIndex = -1;
1222        int photoIndex = getResources().getInteger(R.integer.camera_mode_photo);
1223        int videoIndex = getResources().getInteger(R.integer.camera_mode_video);
1224        int gcamIndex = getResources().getInteger(R.integer.camera_mode_gcam);
1225        if (MediaStore.INTENT_ACTION_VIDEO_CAMERA.equals(getIntent().getAction())
1226                || MediaStore.ACTION_VIDEO_CAPTURE.equals(getIntent().getAction())) {
1227            modeIndex = videoIndex;
1228        } else if (MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA.equals(getIntent().getAction())
1229                || MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA_SECURE.equals(getIntent()
1230                        .getAction())) {
1231            modeIndex = mSettingsManager.getInt(
1232                SettingsManager.SETTING_KEY_CAMERA_MODULE_LAST_USED_INDEX);
1233        } else if (MediaStore.ACTION_IMAGE_CAPTURE.equals(getIntent().getAction())
1234                || MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(getIntent().getAction())) {
1235            modeIndex = mSettingsManager.getInt(
1236                SettingsManager.SETTING_KEY_CAMERA_MODULE_LAST_USED_INDEX);
1237        } else {
1238            // If the activity has not been started using an explicit intent,
1239            // read the module index from the last time the user changed modes
1240            modeIndex = mSettingsManager.getInt(SettingsManager.SETTING_STARTUP_MODULE_INDEX);
1241            if ((modeIndex == gcamIndex &&
1242                    !GcamHelper.hasGcamCapture()) || modeIndex < 0) {
1243                modeIndex = photoIndex;
1244            }
1245        }
1246
1247        mOrientationManager = new OrientationManagerImpl(this);
1248        mOrientationManager.addOnOrientationChangeListener(mMainHandler, this);
1249
1250        setModuleFromModeIndex(modeIndex);
1251        mCameraAppUI.prepareModuleUI();
1252        mCurrentModule.init(this, isSecureCamera(), isCaptureIntent());
1253
1254        if (!mSecureCamera) {
1255            mFilmstripController.setDataAdapter(mDataAdapter);
1256            if (!isCaptureIntent()) {
1257                mDataAdapter.requestLoad();
1258            }
1259        } else {
1260            // Put a lock placeholder as the last image by setting its date to
1261            // 0.
1262            ImageView v = (ImageView) getLayoutInflater().inflate(
1263                    R.layout.secure_album_placeholder, null);
1264            v.setOnClickListener(new View.OnClickListener() {
1265                @Override
1266                public void onClick(View view) {
1267                    UsageStatistics.changeScreen(NavigationChange.Mode.GALLERY,
1268                            InteractionCause.BUTTON);
1269                    startGallery();
1270                    finish();
1271                }
1272            });
1273            mDataAdapter = new FixedLastDataAdapter(
1274                    mAppContext,
1275                    mDataAdapter,
1276                    new SimpleViewData(
1277                            v,
1278                            v.getDrawable().getIntrinsicWidth(),
1279                            v.getDrawable().getIntrinsicHeight(),
1280                            0, 0));
1281            // Flush out all the original data.
1282            mDataAdapter.flush();
1283            mFilmstripController.setDataAdapter(mDataAdapter);
1284        }
1285
1286        setupNfcBeamPush();
1287
1288        mLocalImagesObserver = new LocalMediaObserver();
1289        mLocalVideosObserver = new LocalMediaObserver();
1290
1291        getContentResolver().registerContentObserver(
1292                MediaStore.Images.Media.EXTERNAL_CONTENT_URI, true,
1293                mLocalImagesObserver);
1294        getContentResolver().registerContentObserver(
1295                MediaStore.Video.Media.EXTERNAL_CONTENT_URI, true,
1296                mLocalVideosObserver);
1297        if (FeedbackHelper.feedbackAvailable()) {
1298            mFeedbackHelper = new FeedbackHelper(mAppContext);
1299        }
1300    }
1301
1302    /**
1303     * Call this whenever the mode drawer or filmstrip change the visibility
1304     * state.
1305     */
1306    private void updatePreviewVisibility() {
1307        if (mCurrentModule == null) {
1308            return;
1309        }
1310        int visibility;
1311        if (mFilmstripCoversPreview) {
1312            visibility = ModuleController.VISIBILITY_HIDDEN;
1313        } else if (mModeListVisible){
1314            visibility = ModuleController.VISIBILITY_COVERED;
1315        } else {
1316            visibility = ModuleController.VISIBILITY_VISIBLE;
1317        }
1318        mCurrentModule.onPreviewVisibilityChanged(visibility);
1319    }
1320
1321    private void setRotationAnimation() {
1322        int rotationAnimation = WindowManager.LayoutParams.ROTATION_ANIMATION_ROTATE;
1323        rotationAnimation = WindowManager.LayoutParams.ROTATION_ANIMATION_CROSSFADE;
1324        Window win = getWindow();
1325        WindowManager.LayoutParams winParams = win.getAttributes();
1326        winParams.rotationAnimation = rotationAnimation;
1327        win.setAttributes(winParams);
1328    }
1329
1330    @Override
1331    public void onUserInteraction() {
1332        super.onUserInteraction();
1333        if (!isFinishing()) {
1334            keepScreenOnForAWhile();
1335        }
1336    }
1337
1338    @Override
1339    public boolean dispatchTouchEvent(MotionEvent ev) {
1340        boolean result = super.dispatchTouchEvent(ev);
1341        if (ev.getActionMasked() == MotionEvent.ACTION_DOWN) {
1342            // Real deletion is postponed until the next user interaction after
1343            // the gesture that triggers deletion. Until real deletion is
1344            // performed, users can click the undo button to bring back the
1345            // image that they chose to delete.
1346            if (mPendingDeletion && !mIsUndoingDeletion) {
1347                performDeletion();
1348            }
1349        }
1350        return result;
1351    }
1352
1353    @Override
1354    public void onPause() {
1355        mPaused = true;
1356        mPeekAnimationHandler = null;
1357        mPeekAnimationThread.quitSafely();
1358        mPeekAnimationThread = null;
1359        CameraPerformanceTracker.onEvent(CameraPerformanceTracker.ACTIVITY_PAUSE);
1360
1361        // Delete photos that are pending deletion
1362        performDeletion();
1363        mCurrentModule.pause();
1364        mOrientationManager.pause();
1365        // Close the camera and wait for the operation done.
1366        mCameraController.closeCamera();
1367        mPanoramaViewHelper.onPause();
1368
1369        mLocalImagesObserver.setForegroundChangeListener(null);
1370        mLocalImagesObserver.setActivityPaused(true);
1371        mLocalVideosObserver.setActivityPaused(true);
1372        resetScreenOn();
1373        super.onPause();
1374    }
1375
1376    @Override
1377    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
1378        if (requestCode == REQ_CODE_DONT_SWITCH_TO_PREVIEW) {
1379            mResetToPreviewOnResume = false;
1380        } else {
1381            super.onActivityResult(requestCode, resultCode, data);
1382        }
1383    }
1384
1385    @Override
1386    public void onResume() {
1387        mPaused = false;
1388        CameraPerformanceTracker.onEvent(CameraPerformanceTracker.ACTIVITY_RESUME);
1389
1390        mLastLayoutOrientation = getResources().getConfiguration().orientation;
1391
1392        // TODO: Handle this in OrientationManager.
1393        // Auto-rotate off
1394        if (Settings.System.getInt(getContentResolver(),
1395                Settings.System.ACCELEROMETER_ROTATION, 0) == 0) {
1396            setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
1397            mAutoRotateScreen = false;
1398        } else {
1399            setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_FULL_SENSOR);
1400            mAutoRotateScreen = true;
1401        }
1402
1403        if (isCaptureIntent()) {
1404            // Foreground event caused by photo or video capure intent.
1405            UsageStatistics.foregrounded(
1406                    eventprotos.ForegroundEvent.ForegroundSource.INTENT_PICKER);
1407        } else if (!mSecureCamera) {
1408            // Foreground event that is not caused by an intent.
1409            UsageStatistics.foregrounded(
1410                    eventprotos.ForegroundEvent.ForegroundSource.ICON_LAUNCHER);
1411        }
1412
1413        Drawable galleryLogo;
1414        if (mSecureCamera) {
1415            mGalleryIntent = null;
1416            galleryLogo = null;
1417        } else {
1418            mGalleryIntent = IntentHelper.getDefaultGalleryIntent(mAppContext);
1419            galleryLogo = IntentHelper.getGalleryIcon(mAppContext, mGalleryIntent);
1420        }
1421        if (galleryLogo == null) {
1422            try {
1423                galleryLogo = getPackageManager().getActivityLogo(getComponentName());
1424            } catch (PackageManager.NameNotFoundException e) {
1425                Log.e(TAG, "Can't get the activity logo");
1426            }
1427        }
1428        if (mGalleryIntent != null) {
1429            mActionBar.setDisplayUseLogoEnabled(true);
1430        }
1431        mActionBar.setLogo(galleryLogo);
1432        mOrientationManager.resume();
1433        super.onResume();
1434        mPeekAnimationThread = new HandlerThread("Peek animation");
1435        mPeekAnimationThread.start();
1436        mPeekAnimationHandler = new PeekAnimationHandler(mPeekAnimationThread.getLooper());
1437        mCurrentModule.resume();
1438        setSwipingEnabled(true);
1439
1440        if (mResetToPreviewOnResume) {
1441            mCameraAppUI.resume();
1442        } else {
1443            LocalData data = mDataAdapter.getLocalData(mFilmstripController.getCurrentId());
1444            if (data != null) {
1445                mDataAdapter.refresh(data.getContentUri());
1446            }
1447        }
1448        // The share button might be disabled to avoid double tapping.
1449        mCameraAppUI.getFilmstripBottomControls().setShareEnabled(true);
1450        // Default is showing the preview, unless disabled by explicitly
1451        // starting an activity we want to return from to the filmstrip rather
1452        // than the preview.
1453        mResetToPreviewOnResume = true;
1454
1455        if (mLocalVideosObserver.isMediaDataChangedDuringPause()
1456                || mLocalImagesObserver.isMediaDataChangedDuringPause()) {
1457            if (!mSecureCamera) {
1458                // If it's secure camera, requestLoad() should not be called
1459                // as it will load all the data.
1460                if (!mFilmstripVisible) {
1461                    mDataAdapter.requestLoad();
1462                } else {
1463                    mDataAdapter.requestLoadNewPhotos();
1464                }
1465            }
1466        }
1467        mLocalImagesObserver.setActivityPaused(false);
1468        mLocalVideosObserver.setActivityPaused(false);
1469        mLocalImagesObserver.setForegroundChangeListener(new LocalMediaObserver.ChangeListener() {
1470            @Override
1471            public void onChange() {
1472                mDataAdapter.requestLoadNewPhotos();
1473            }
1474        });
1475
1476        keepScreenOnForAWhile();
1477
1478        // Lights-out mode at all times.
1479        findViewById(R.id.activity_root_view)
1480                .setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE);
1481        mPanoramaViewHelper.onResume();
1482        ReleaseDialogHelper.showReleaseInfoDialogOnStart(this, mSettingsManager);
1483        syncLocationManagerSetting();
1484    }
1485
1486    @Override
1487    public void onStart() {
1488        super.onStart();
1489        mPanoramaViewHelper.onStart();
1490        if (mResetToPreviewOnResume) {
1491            mCameraAppUI.resume();
1492            mResetToPreviewOnResume = false;
1493        }
1494    }
1495
1496    @Override
1497    protected void onStop() {
1498        mPanoramaViewHelper.onStop();
1499        if (mFeedbackHelper != null) {
1500            mFeedbackHelper.stopFeedback();
1501        }
1502
1503        mLocationManager.disconnect();
1504        super.onStop();
1505    }
1506
1507    @Override
1508    public void onDestroy() {
1509        if (mSecureCamera) {
1510            unregisterReceiver(mScreenOffReceiver);
1511        }
1512        mActionBar.removeOnMenuVisibilityListener(this);
1513        mSettingsManager.removeAllListeners();
1514        mCameraController.removeCallbackReceiver();
1515        getContentResolver().unregisterContentObserver(mLocalImagesObserver);
1516        getContentResolver().unregisterContentObserver(mLocalVideosObserver);
1517        getServices().getCaptureSessionManager().removeSessionListener(mSessionListener);
1518        mCameraAppUI.onDestroy();
1519        mCameraController = null;
1520        mSettingsManager = null;
1521        mCameraAppUI = null;
1522        mOrientationManager = null;
1523        mButtonManager = null;
1524        CameraManagerFactory.recycle();
1525        super.onDestroy();
1526    }
1527
1528    @Override
1529    public void onConfigurationChanged(Configuration config) {
1530        super.onConfigurationChanged(config);
1531        Log.v(TAG, "onConfigurationChanged");
1532        if (config.orientation == Configuration.ORIENTATION_UNDEFINED) {
1533            return;
1534        }
1535
1536        if (mLastLayoutOrientation != config.orientation) {
1537            mLastLayoutOrientation = config.orientation;
1538            mCurrentModule.onLayoutOrientationChanged(
1539                    mLastLayoutOrientation == Configuration.ORIENTATION_LANDSCAPE);
1540        }
1541    }
1542
1543    @Override
1544    public boolean onKeyDown(int keyCode, KeyEvent event) {
1545        if (!mFilmstripVisible) {
1546            if (mCurrentModule.onKeyDown(keyCode, event)) {
1547                return true;
1548            }
1549            // Prevent software keyboard or voice search from showing up.
1550            if (keyCode == KeyEvent.KEYCODE_SEARCH
1551                    || keyCode == KeyEvent.KEYCODE_MENU) {
1552                if (event.isLongPress()) {
1553                    return true;
1554                }
1555            }
1556        }
1557
1558        return super.onKeyDown(keyCode, event);
1559    }
1560
1561    @Override
1562    public boolean onKeyUp(int keyCode, KeyEvent event) {
1563        if (!mFilmstripVisible && mCurrentModule.onKeyUp(keyCode, event)) {
1564            return true;
1565        }
1566        return super.onKeyUp(keyCode, event);
1567    }
1568
1569    @Override
1570    public void onBackPressed() {
1571        if (!mCameraAppUI.onBackPressed()) {
1572            if (!mCurrentModule.onBackPressed()) {
1573                super.onBackPressed();
1574            }
1575        }
1576    }
1577
1578    @Override
1579    public boolean isAutoRotateScreen() {
1580        // TODO: Move to OrientationManager.
1581        return mAutoRotateScreen;
1582    }
1583
1584    @Override
1585    public boolean onCreateOptionsMenu(Menu menu) {
1586        MenuInflater inflater = getMenuInflater();
1587        inflater.inflate(R.menu.filmstrip_menu, menu);
1588        mActionBarMenu = menu;
1589        return super.onCreateOptionsMenu(menu);
1590    }
1591
1592    protected void updateStorageSpace() {
1593        mStorageSpaceBytes = Storage.getAvailableSpace();
1594    }
1595
1596    protected long getStorageSpaceBytes() {
1597        return mStorageSpaceBytes;
1598    }
1599
1600    protected void updateStorageSpaceAndHint() {
1601        updateStorageSpace();
1602        updateStorageHint(mStorageSpaceBytes);
1603    }
1604
1605    protected void updateStorageHint(long storageSpace) {
1606        String message = null;
1607        if (storageSpace == Storage.UNAVAILABLE) {
1608            message = getString(R.string.no_storage);
1609        } else if (storageSpace == Storage.PREPARING) {
1610            message = getString(R.string.preparing_sd);
1611        } else if (storageSpace == Storage.UNKNOWN_SIZE) {
1612            message = getString(R.string.access_sd_fail);
1613        } else if (storageSpace <= Storage.LOW_STORAGE_THRESHOLD_BYTES) {
1614            message = getString(R.string.spaceIsLow_content);
1615        }
1616
1617        if (message != null) {
1618            if (mStorageHint == null) {
1619                mStorageHint = OnScreenHint.makeText(mAppContext, message);
1620            } else {
1621                mStorageHint.setText(message);
1622            }
1623            mStorageHint.show();
1624        } else if (mStorageHint != null) {
1625            mStorageHint.cancel();
1626            mStorageHint = null;
1627        }
1628    }
1629
1630    protected void setResultEx(int resultCode) {
1631        mResultCodeForTesting = resultCode;
1632        setResult(resultCode);
1633    }
1634
1635    protected void setResultEx(int resultCode, Intent data) {
1636        mResultCodeForTesting = resultCode;
1637        mResultDataForTesting = data;
1638        setResult(resultCode, data);
1639    }
1640
1641    public int getResultCode() {
1642        return mResultCodeForTesting;
1643    }
1644
1645    public Intent getResultData() {
1646        return mResultDataForTesting;
1647    }
1648
1649    public boolean isSecureCamera() {
1650        return mSecureCamera;
1651    }
1652
1653    @Override
1654    public boolean isPaused() {
1655        return mPaused;
1656    }
1657
1658    @Override
1659    public int getPreferredChildModeIndex(int modeIndex) {
1660        if (modeIndex == getResources().getInteger(R.integer.camera_mode_photo)) {
1661            boolean hdrPlusOn = mSettingsManager.isHdrPlusOn();
1662            if (hdrPlusOn && GcamHelper.hasGcamCapture()) {
1663                modeIndex = getResources().getInteger(R.integer.camera_mode_gcam);
1664            }
1665        }
1666        return modeIndex;
1667    }
1668
1669    @Override
1670    public void onModeSelected(int modeIndex) {
1671        if (mCurrentModeIndex == modeIndex) {
1672            return;
1673        }
1674
1675        CameraPerformanceTracker.onEvent(CameraPerformanceTracker.MODE_SWITCH_START);
1676        // Record last used camera mode for quick switching
1677        if (modeIndex == getResources().getInteger(R.integer.camera_mode_photo)
1678                || modeIndex == getResources().getInteger(R.integer.camera_mode_gcam)) {
1679            mSettingsManager.setInt(SettingsManager.SETTING_KEY_CAMERA_MODULE_LAST_USED_INDEX,
1680                    modeIndex);
1681        }
1682
1683        closeModule(mCurrentModule);
1684        int oldModuleIndex = mCurrentModeIndex;
1685
1686        // Select the correct module index from the mode switcher index.
1687        modeIndex = getPreferredChildModeIndex(modeIndex);
1688        setModuleFromModeIndex(modeIndex);
1689
1690        mCameraAppUI.resetBottomControls(mCurrentModule, modeIndex);
1691        mCameraAppUI.addShutterListener(mCurrentModule);
1692        openModule(mCurrentModule);
1693        mCurrentModule.onOrientationChanged(mLastRawOrientation);
1694        // Store the module index so we can use it the next time the Camera
1695        // starts up.
1696        SharedPreferences prefs = PreferenceManager
1697                .getDefaultSharedPreferences(mAppContext);
1698        prefs.edit().putInt(CameraSettings.KEY_STARTUP_MODULE_INDEX, modeIndex).apply();
1699    }
1700
1701    /**
1702     * Shows the settings dialog.
1703     */
1704    @Override
1705    public void onSettingsSelected() {
1706        Intent intent = new Intent(this, CameraSettingsActivity.class);
1707        startActivity(intent);
1708    }
1709
1710    /**
1711     * Sets the mCurrentModuleIndex, creates a new module instance for the given
1712     * index an sets it as mCurrentModule.
1713     */
1714    private void setModuleFromModeIndex(int modeIndex) {
1715        ModuleManagerImpl.ModuleAgent agent = mModuleManager.getModuleAgent(modeIndex);
1716        if (agent == null) {
1717            return;
1718        }
1719        if (!agent.requestAppForCamera()) {
1720            mCameraController.closeCamera();
1721        }
1722        mCurrentModeIndex = agent.getModuleId();
1723        mCurrentModule = (CameraModule) agent.createModule(this);
1724    }
1725
1726    @Override
1727    public SettingsManager getSettingsManager() {
1728        return mSettingsManager;
1729    }
1730
1731    @Override
1732    public CameraServices getServices() {
1733        return (CameraServices) getApplication();
1734    }
1735
1736    public List<String> getSupportedModeNames() {
1737        List<Integer> indices = mModuleManager.getSupportedModeIndexList();
1738        List<String> supported = new ArrayList<String>();
1739
1740        for (Integer modeIndex : indices) {
1741            String name = CameraUtil.getCameraModeText(modeIndex, mAppContext);
1742            if (name != null && !name.equals("")) {
1743                supported.add(name);
1744            }
1745        }
1746        return supported;
1747    }
1748
1749    @Override
1750    public ButtonManager getButtonManager() {
1751        if (mButtonManager == null) {
1752            mButtonManager = new ButtonManager(this);
1753        }
1754        return mButtonManager;
1755    }
1756
1757    /**
1758     * Creates an AlertDialog appropriate for choosing whether to enable
1759     * location on the first run of the app.
1760     */
1761    public AlertDialog getFirstTimeLocationAlert() {
1762        AlertDialog.Builder builder = new AlertDialog.Builder(this);
1763        builder = SettingsUtil.getFirstTimeLocationAlertBuilder(builder, new Callback<Boolean>() {
1764            @Override
1765            public void onCallback(Boolean locationOn) {
1766                mSettingsManager.setLocation(locationOn, mLocationManager);
1767            }
1768        });
1769        if (builder != null) {
1770            return builder.create();
1771        } else {
1772            return null;
1773        }
1774    }
1775
1776    /**
1777     * Launches an ACTION_EDIT intent for the given local data item. If
1778     * 'withTinyPlanet' is set, this will show a disambig dialog first to let
1779     * the user start either the tiny planet editor or another photo edior.
1780     *
1781     * @param data The data item to edit.
1782     */
1783    public void launchEditor(LocalData data) {
1784        Intent intent = new Intent(Intent.ACTION_EDIT)
1785                .setDataAndType(data.getContentUri(), data.getMimeType())
1786                .setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
1787        try {
1788            launchActivityByIntent(intent);
1789        } catch (ActivityNotFoundException e) {
1790            launchActivityByIntent(Intent.createChooser(intent, null));
1791        }
1792    }
1793
1794    @Override
1795    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
1796        super.onCreateContextMenu(menu, v, menuInfo);
1797
1798        MenuInflater inflater = getMenuInflater();
1799        inflater.inflate(R.menu.filmstrip_context_menu, menu);
1800    }
1801
1802    @Override
1803    public boolean onContextItemSelected(MenuItem item) {
1804        switch (item.getItemId()) {
1805            case R.id.tiny_planet_editor:
1806                mMyFilmstripBottomControlListener.onTinyPlanet();
1807                return true;
1808            case R.id.photo_editor:
1809                mMyFilmstripBottomControlListener.onEdit();
1810                return true;
1811        }
1812        return false;
1813    }
1814
1815    /**
1816     * Launch the tiny planet editor.
1817     *
1818     * @param data The data must be a 360 degree stereographically mapped
1819     *            panoramic image. It will not be modified, instead a new item
1820     *            with the result will be added to the filmstrip.
1821     */
1822    public void launchTinyPlanetEditor(LocalData data) {
1823        TinyPlanetFragment fragment = new TinyPlanetFragment();
1824        Bundle bundle = new Bundle();
1825        bundle.putString(TinyPlanetFragment.ARGUMENT_URI, data.getContentUri().toString());
1826        bundle.putString(TinyPlanetFragment.ARGUMENT_TITLE, data.getTitle());
1827        fragment.setArguments(bundle);
1828        fragment.show(getFragmentManager(), "tiny_planet");
1829    }
1830
1831    private void openModule(CameraModule module) {
1832        module.init(this, isSecureCamera(), isCaptureIntent());
1833        module.resume();
1834        updatePreviewVisibility();
1835    }
1836
1837    private void closeModule(CameraModule module) {
1838        module.pause();
1839        mCameraAppUI.clearModuleUI();
1840    }
1841
1842    private void performDeletion() {
1843        if (!mPendingDeletion) {
1844            return;
1845        }
1846        hideUndoDeletionBar(false);
1847        mDataAdapter.executeDeletion();
1848    }
1849
1850    public void showUndoDeletionBar() {
1851        if (mPendingDeletion) {
1852            performDeletion();
1853        }
1854        Log.v(TAG, "showing undo bar");
1855        mPendingDeletion = true;
1856        if (mUndoDeletionBar == null) {
1857            ViewGroup v = (ViewGroup) getLayoutInflater().inflate(R.layout.undo_bar,
1858                    mAboveFilmstripControlLayout, true);
1859            mUndoDeletionBar = (ViewGroup) v.findViewById(R.id.camera_undo_deletion_bar);
1860            View button = mUndoDeletionBar.findViewById(R.id.camera_undo_deletion_button);
1861            button.setOnClickListener(new View.OnClickListener() {
1862                @Override
1863                public void onClick(View view) {
1864                    mDataAdapter.undoDataRemoval();
1865                    hideUndoDeletionBar(true);
1866                }
1867            });
1868            // Setting undo bar clickable to avoid touch events going through
1869            // the bar to the buttons (eg. edit button, etc) underneath the bar.
1870            mUndoDeletionBar.setClickable(true);
1871            // When there is user interaction going on with the undo button, we
1872            // do not want to hide the undo bar.
1873            button.setOnTouchListener(new View.OnTouchListener() {
1874                @Override
1875                public boolean onTouch(View v, MotionEvent event) {
1876                    if (event.getActionMasked() == MotionEvent.ACTION_DOWN) {
1877                        mIsUndoingDeletion = true;
1878                    } else if (event.getActionMasked() == MotionEvent.ACTION_UP) {
1879                        mIsUndoingDeletion = false;
1880                    }
1881                    return false;
1882                }
1883            });
1884        }
1885        mUndoDeletionBar.setAlpha(0f);
1886        mUndoDeletionBar.setVisibility(View.VISIBLE);
1887        mUndoDeletionBar.animate().setDuration(200).alpha(1f).setListener(null).start();
1888    }
1889
1890    private void hideUndoDeletionBar(boolean withAnimation) {
1891        Log.v(TAG, "Hiding undo deletion bar");
1892        mPendingDeletion = false;
1893        if (mUndoDeletionBar != null) {
1894            if (withAnimation) {
1895                mUndoDeletionBar.animate().setDuration(200).alpha(0f)
1896                        .setListener(new Animator.AnimatorListener() {
1897                            @Override
1898                            public void onAnimationStart(Animator animation) {
1899                                // Do nothing.
1900                            }
1901
1902                            @Override
1903                            public void onAnimationEnd(Animator animation) {
1904                                mUndoDeletionBar.setVisibility(View.GONE);
1905                            }
1906
1907                            @Override
1908                            public void onAnimationCancel(Animator animation) {
1909                                // Do nothing.
1910                            }
1911
1912                            @Override
1913                            public void onAnimationRepeat(Animator animation) {
1914                                // Do nothing.
1915                            }
1916                        }).start();
1917            } else {
1918                mUndoDeletionBar.setVisibility(View.GONE);
1919            }
1920        }
1921    }
1922
1923    @Override
1924    public void onOrientationChanged(int orientation) {
1925        // We keep the last known orientation. So if the user first orient
1926        // the camera then point the camera to floor or sky, we still have
1927        // the correct orientation.
1928        if (orientation == OrientationManager.ORIENTATION_UNKNOWN) {
1929            return;
1930        }
1931        mLastRawOrientation = orientation;
1932        if (mCurrentModule != null) {
1933            mCurrentModule.onOrientationChanged(orientation);
1934        }
1935    }
1936
1937    /**
1938     * Enable/disable swipe-to-filmstrip. Will always disable swipe if in
1939     * capture intent.
1940     *
1941     * @param enable {@code true} to enable swipe.
1942     */
1943    public void setSwipingEnabled(boolean enable) {
1944        // TODO: Bring back the functionality.
1945        if (isCaptureIntent()) {
1946            // lockPreview(true);
1947        } else {
1948            // lockPreview(!enable);
1949        }
1950    }
1951
1952    // Accessor methods for getting latency times used in performance testing
1953    public long getFirstPreviewTime() {
1954        if (mCurrentModule instanceof PhotoModule) {
1955            long coverHiddenTime = getCameraAppUI().getCoverHiddenTime();
1956            if (coverHiddenTime != -1) {
1957                return coverHiddenTime - mOnCreateTime;
1958            }
1959        }
1960        return -1;
1961    }
1962
1963    public long getAutoFocusTime() {
1964        return (mCurrentModule instanceof PhotoModule) ?
1965                ((PhotoModule) mCurrentModule).mAutoFocusTime : -1;
1966    }
1967
1968    public long getShutterLag() {
1969        return (mCurrentModule instanceof PhotoModule) ?
1970                ((PhotoModule) mCurrentModule).mShutterLag : -1;
1971    }
1972
1973    public long getShutterToPictureDisplayedTime() {
1974        return (mCurrentModule instanceof PhotoModule) ?
1975                ((PhotoModule) mCurrentModule).mShutterToPictureDisplayedTime : -1;
1976    }
1977
1978    public long getPictureDisplayedToJpegCallbackTime() {
1979        return (mCurrentModule instanceof PhotoModule) ?
1980                ((PhotoModule) mCurrentModule).mPictureDisplayedToJpegCallbackTime : -1;
1981    }
1982
1983    public long getJpegCallbackFinishTime() {
1984        return (mCurrentModule instanceof PhotoModule) ?
1985                ((PhotoModule) mCurrentModule).mJpegCallbackFinishTime : -1;
1986    }
1987
1988    public long getCaptureStartTime() {
1989        return (mCurrentModule instanceof PhotoModule) ?
1990                ((PhotoModule) mCurrentModule).mCaptureStartTime : -1;
1991    }
1992
1993    public boolean isRecording() {
1994        return (mCurrentModule instanceof VideoModule) ?
1995                ((VideoModule) mCurrentModule).isRecording() : false;
1996    }
1997
1998    public CameraManager.CameraOpenCallback getCameraOpenErrorCallback() {
1999        return mCameraController;
2000    }
2001
2002    // For debugging purposes only.
2003    public CameraModule getCurrentModule() {
2004        return mCurrentModule;
2005    }
2006
2007    @Override
2008    public void showTutorial(AbstractTutorialOverlay tutorial) {
2009        mCameraAppUI.showTutorial(tutorial, getLayoutInflater());
2010    }
2011
2012    /**
2013     * Reads the current location recording settings and passes it on to the
2014     * location manager.
2015     */
2016    public void syncLocationManagerSetting() {
2017        mSettingsManager.syncLocationManager(mLocationManager);
2018    }
2019
2020    private void keepScreenOnForAWhile() {
2021        if (mKeepScreenOn) {
2022            return;
2023        }
2024        mMainHandler.removeMessages(MSG_CLEAR_SCREEN_ON_FLAG);
2025        getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
2026        mMainHandler.sendEmptyMessageDelayed(MSG_CLEAR_SCREEN_ON_FLAG, SCREEN_DELAY_MS);
2027    }
2028
2029    private void resetScreenOn() {
2030        mKeepScreenOn = false;
2031        mMainHandler.removeMessages(MSG_CLEAR_SCREEN_ON_FLAG);
2032        getWindow().clearFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
2033    }
2034
2035    /**
2036     * @return {@code true} if the Gallery is launched successfully.
2037     */
2038    private boolean startGallery() {
2039        if (mGalleryIntent == null) {
2040            return false;
2041        }
2042        try {
2043            UsageStatistics.changeScreen(NavigationChange.Mode.GALLERY, InteractionCause.BUTTON);
2044            Intent startGalleryIntent = new Intent(mGalleryIntent);
2045            int currentDataId = mFilmstripController.getCurrentId();
2046            LocalData currentLocalData = mDataAdapter.getLocalData(currentDataId);
2047            if (currentLocalData != null) {
2048                GalleryHelper.setContentUri(startGalleryIntent, currentLocalData.getContentUri());
2049            }
2050            launchActivityByIntent(startGalleryIntent);
2051        } catch (ActivityNotFoundException e) {
2052            Log.w(TAG, "Failed to launch gallery activity, closing");
2053        }
2054        return false;
2055    }
2056
2057    private void setNfcBeamPushUriFromData(LocalData data) {
2058        final Uri uri = data.getContentUri();
2059        if (uri != Uri.EMPTY) {
2060            mNfcPushUris[0] = uri;
2061        } else {
2062            mNfcPushUris[0] = null;
2063        }
2064    }
2065
2066    /**
2067     * Updates the visibility of the filmstrip bottom controls and action bar.
2068     */
2069    private void updateUiByData(final int dataId) {
2070        final LocalData currentData = mDataAdapter.getLocalData(dataId);
2071        if (currentData == null) {
2072            Log.w(TAG, "Current data ID not found.");
2073            hideSessionProgress();
2074            return;
2075        }
2076        updateActionBarMenu(currentData);
2077
2078        /* Bottom controls. */
2079        updateBottomControlsByData(currentData);
2080
2081        if (isSecureCamera()) {
2082            // We cannot show buttons in secure camera since go to other
2083            // activities might create a security hole.
2084            mCameraAppUI.getFilmstripBottomControls().hideControls();
2085            return;
2086        }
2087
2088
2089        setNfcBeamPushUriFromData(currentData);
2090
2091        if (!mDataAdapter.isMetadataUpdated(dataId)) {
2092            mDataAdapter.updateMetadata(dataId);
2093        }
2094    }
2095
2096    /**
2097     * Updates the bottom controls based on the data.
2098     */
2099    private void updateBottomControlsByData(final LocalData currentData) {
2100
2101        final CameraAppUI.BottomPanel filmstripBottomPanel =
2102                mCameraAppUI.getFilmstripBottomControls();
2103        filmstripBottomPanel.showControls();
2104        filmstripBottomPanel.setEditButtonVisibility(
2105                currentData.isDataActionSupported(LocalData.DATA_ACTION_EDIT));
2106        filmstripBottomPanel.setShareButtonVisibility(
2107                currentData.isDataActionSupported(LocalData.DATA_ACTION_SHARE));
2108        filmstripBottomPanel.setDeleteButtonVisibility(
2109                currentData.isDataActionSupported(LocalData.DATA_ACTION_DELETE));
2110
2111        /* Progress bar */
2112
2113        Uri contentUri = currentData.getContentUri();
2114        CaptureSessionManager sessionManager = getServices()
2115                .getCaptureSessionManager();
2116
2117        if (sessionManager.hasErrorMessage(contentUri)) {
2118            showProcessError(sessionManager.getErrorMesage(contentUri));
2119        } else {
2120            filmstripBottomPanel.hideProgressError();
2121            int sessionProgress = sessionManager.getSessionProgress(contentUri);
2122
2123            if (sessionProgress < 0) {
2124                hideSessionProgress();
2125            } else {
2126                CharSequence progressMessage = sessionManager
2127                        .getSessionProgressMessage(contentUri);
2128                showSessionProgress(progressMessage);
2129                updateSessionProgress(sessionProgress);
2130            }
2131        }
2132
2133        /* View button */
2134
2135        // We need to add this to a separate DB.
2136        final int viewButtonVisibility;
2137        if (PanoramaMetadataLoader.isPanoramaAndUseViewer(currentData)) {
2138            viewButtonVisibility = CameraAppUI.BottomPanel.VIEWER_PHOTO_SPHERE;
2139        } else if (RgbzMetadataLoader.hasRGBZData(currentData)) {
2140            viewButtonVisibility = CameraAppUI.BottomPanel.VIEWER_REFOCUS;
2141        } else {
2142            viewButtonVisibility = CameraAppUI.BottomPanel.VIEWER_NONE;
2143        }
2144
2145        filmstripBottomPanel.setTinyPlanetEnabled(
2146                PanoramaMetadataLoader.isPanorama360(currentData));
2147        filmstripBottomPanel.setViewerButtonVisibility(viewButtonVisibility);
2148    }
2149
2150    private class PeekAnimationHandler extends Handler {
2151        private class DataAndCallback {
2152            LocalData mData;
2153            com.android.camera.util.Callback<Bitmap> mCallback;
2154
2155            public DataAndCallback(LocalData data, com.android.camera.util.Callback<Bitmap>
2156                    callback) {
2157                mData = data;
2158                mCallback = callback;
2159            }
2160        }
2161
2162        public PeekAnimationHandler(Looper looper) {
2163            super(looper);
2164        }
2165
2166        /**
2167         * Starts the animation decoding job and posts a {@code Runnable} back
2168         * when when the decoding is done.
2169         *
2170         * @param data The data item to decode the thumbnail for.
2171         * @param callback {@link com.android.camera.util.Callback} after the
2172         *                 decoding is done.
2173         */
2174        public void startDecodingJob(final LocalData data,
2175                final com.android.camera.util.Callback<Bitmap> callback) {
2176            PeekAnimationHandler.this.obtainMessage(0 /** dummy integer **/,
2177                    new DataAndCallback(data, callback)).sendToTarget();
2178        }
2179
2180        @Override
2181        public void handleMessage(Message msg) {
2182            final LocalData data = ((DataAndCallback) msg.obj).mData;
2183            final com.android.camera.util.Callback<Bitmap> callback =
2184                    ((DataAndCallback) msg.obj).mCallback;
2185            if (data == null || callback == null) {
2186                return;
2187            }
2188
2189            final Bitmap bitmap;
2190            switch (data.getLocalDataType()) {
2191                case LocalData.LOCAL_IMAGE:
2192                case LocalData.LOCAL_IN_PROGRESS_DATA:
2193                    FileInputStream stream;
2194                    try {
2195                        stream = new FileInputStream(data.getPath());
2196                    } catch (FileNotFoundException e) {
2197                        Log.e(TAG, "File not found:" + data.getPath());
2198                        return;
2199                    }
2200                    Point dim = CameraUtil.resizeToFill(data.getWidth(), data.getHeight(),
2201                            data.getRotation(), mAboveFilmstripControlLayout.getWidth(),
2202                            mAboveFilmstripControlLayout.getMeasuredHeight());
2203                    if (data.getRotation() % 180 != 0) {
2204                        int dummy = dim.x;
2205                        dim.x = dim.y;
2206                        dim.y = dummy;
2207                    }
2208                    bitmap = LocalDataUtil
2209                            .loadImageThumbnailFromStream(stream, data.getWidth(), data.getHeight(),
2210                                    (int) (dim.x * 0.7f), (int) (dim.y * 0.7),
2211                                    data.getRotation(), MAX_PEEK_BITMAP_PIXELS);
2212                    break;
2213
2214                case LocalData.LOCAL_VIDEO:
2215                    bitmap = LocalDataUtil.loadVideoThumbnail(data.getPath());
2216                    break;
2217
2218                default:
2219                    bitmap = null;
2220                    break;
2221            }
2222
2223            if (bitmap == null) {
2224                return;
2225            }
2226
2227            mMainHandler.post(new Runnable() {
2228                @Override
2229                public void run() {
2230                    callback.onCallback(bitmap);
2231                    mCameraAppUI.startPeekAnimation(bitmap, true);
2232                }
2233            });
2234        }
2235    }
2236
2237    private void showDetailsDialog(int dataId) {
2238        final LocalData data = mDataAdapter.getLocalData(dataId);
2239        if (data == null) {
2240            return;
2241        }
2242        MediaDetails details = data.getMediaDetails(getAndroidContext());
2243        if (details == null) {
2244            return;
2245        }
2246        Dialog detailDialog = DetailsDialog.create(CameraActivity.this, details);
2247        detailDialog.show();
2248
2249        UsageStatistics.photoInteraction(
2250                UsageStatistics.hashFileName(fileNameFromDataID(dataId)),
2251                eventprotos.CameraEvent.InteractionType.DETAILS,
2252                InteractionCause.BUTTON);
2253    }
2254
2255    /**
2256     * Show or hide action bar items depending on current data type.
2257     */
2258    private void updateActionBarMenu(LocalData data) {
2259        if (mActionBarMenu == null) {
2260            return;
2261        }
2262
2263        MenuItem detailsMenuItem = mActionBarMenu.findItem(R.id.action_details);
2264        if (detailsMenuItem == null) {
2265            return;
2266        }
2267
2268        int type = data.getLocalDataType();
2269        boolean showDetails = (type == LocalData.LOCAL_IMAGE) || (type == LocalData.LOCAL_VIDEO);
2270        detailsMenuItem.setVisible(showDetails);
2271    }
2272}
2273