summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/ui/GpsIndicator.java
diff options
context:
space:
mode:
authorOwen Lin <owenlin@google.com>2010-03-03 21:12:40 +0800
committerOwen Lin <owenlin@google.com>2010-03-07 14:30:49 +0800
commit281be5337852cb4b5d24e0a0440c426cb96bbebd (patch)
treeb4218ea13055f7e9302e432554baf1e12695cef1 /src/com/android/camera/ui/GpsIndicator.java
parentbe69d39c4ab8fa93a52ed13a72ba2ad582adf583 (diff)
downloadLegacyCamera-281be5337852cb4b5d24e0a0440c426cb96bbebd.zip
LegacyCamera-281be5337852cb4b5d24e0a0440c426cb96bbebd.tar.gz
LegacyCamera-281be5337852cb4b5d24e0a0440c426cb96bbebd.tar.bz2
Add pixel density concept to the code. So, it draw about the same size on
mdpi and hdpi devices. Update the UI assets for mdpi Fix a issue that GLSurfaceView didn't call onPause and onResume in Camera. Refactor. Improve the drawing and animation. Also fix the RawTexture unsupported operation bugs and the NullPointerException in GLRootView. Change-Id: I7aeadcad72d64a665828a6bb4f0f73e685fde632
Diffstat (limited to 'src/com/android/camera/ui/GpsIndicator.java')
-rw-r--r--src/com/android/camera/ui/GpsIndicator.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/camera/ui/GpsIndicator.java b/src/com/android/camera/ui/GpsIndicator.java
index 27fe0a1..955b3ae 100644
--- a/src/com/android/camera/ui/GpsIndicator.java
+++ b/src/com/android/camera/ui/GpsIndicator.java
@@ -12,8 +12,8 @@ public class GpsIndicator extends BasicIndicator {
private ResourceTexture mNoSignalIcon;
private boolean mHasSignal = false;
- public GpsIndicator(IconListPreference preference) {
- super(preference);
+ public GpsIndicator(Context context, IconListPreference preference) {
+ super(context, preference);
}
@Override