summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera
diff options
context:
space:
mode:
authorMangesh Ghiware <mghiware@google.com>2013-08-14 08:44:07 -0700
committerMangesh Ghiware <mghiware@google.com>2013-08-14 10:01:41 -0700
commitf142f2f0823f08c5d6207066a291449ed90d642f (patch)
treeaa92e5440dc69dfdfe3ee59eaf31764064e6eafe /src/com/android/camera
parent389e8c887489db88e9324c17e8d29363198e7221 (diff)
downloadandroid_packages_apps_Gallery2-f142f2f0823f08c5d6207066a291449ed90d642f.tar.gz
android_packages_apps_Gallery2-f142f2f0823f08c5d6207066a291449ed90d642f.tar.bz2
android_packages_apps_Gallery2-f142f2f0823f08c5d6207066a291449ed90d642f.zip
Add a trampoline activity to launch new Camera
This preserves shortcuts, if any, to the Camera activity in the old package name. Bug: 10312966 Change-Id: Iffd3d708333515bb3b998faecff360bc01c142d2
Diffstat (limited to 'src/com/android/camera')
-rw-r--r--src/com/android/camera/CameraActivity.java31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/com/android/camera/CameraActivity.java b/src/com/android/camera/CameraActivity.java
new file mode 100644
index 000000000..5d06ad195
--- /dev/null
+++ b/src/com/android/camera/CameraActivity.java
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2013 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.android.camera;
+
+import com.android.gallery3d.util.CameraHelper;
+
+import android.app.Activity;
+import android.os.Bundle;
+
+/** Trampoline activity that launches the new Camera activity defined in CameraHelper. */
+public class CameraActivity extends Activity {
+ @Override
+ public void onCreate(Bundle icicle) {
+ super.onCreate(icicle);
+ startActivity(CameraHelper.CAMERA_LAUNCHER_INTENT);
+ finish();
+ }
+}