summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/CameraAppImpl.java
diff options
context:
space:
mode:
authorChung-yih Wang <cywang@google.com>2011-07-20 07:02:18 +0800
committerChung-yih Wang <cywang@google.com>2011-08-04 08:47:34 +0800
commitbed7386688cd7810cba23732ab71f370fe3222ff (patch)
tree2ff1db2d188e4e6f570f4fa393277c7165853cff /src/com/android/camera/CameraAppImpl.java
parent2989c0da86939dea7af264d7b9b25593f8aff2f7 (diff)
downloadLegacyCamera-bed7386688cd7810cba23732ab71f370fe3222ff.zip
LegacyCamera-bed7386688cd7810cba23732ab71f370fe3222ff.tar.gz
LegacyCamera-bed7386688cd7810cba23732ab71f370fe3222ff.tar.bz2
Merge the indicator bar implementations.
bug:5039235 Originally we have the GLView-implemented indicators for Phone-based UI. Based on the current UI design, we would like to merge the look on all devices for the dialog of the camera setting. Therefore, a refactor of how to handle the popup window is required here and this will simplify our UI work for handling different layout/resolution. Change-Id: I6f9e6ebed7600be460ddd906505cdc44f81098ad
Diffstat (limited to 'src/com/android/camera/CameraAppImpl.java')
-rw-r--r--src/com/android/camera/CameraAppImpl.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/com/android/camera/CameraAppImpl.java b/src/com/android/camera/CameraAppImpl.java
new file mode 100644
index 0000000..d38cdf0
--- /dev/null
+++ b/src/com/android/camera/CameraAppImpl.java
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2011 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 android.app.Application;
+
+public class CameraAppImpl extends Application {
+
+ @Override
+ public void onCreate() {
+ super.onCreate();
+ Util.initialize(this);
+ }
+}
+
+