diff options
author | Eino-Ville Talvala <etalvala@google.com> | 2011-10-18 13:33:25 -0700 |
---|---|---|
committer | Eino-Ville Talvala <etalvala@google.com> | 2011-10-19 11:40:32 -0700 |
commit | 131cf9886c4f34431598be0b1f5b7aaa915277cc (patch) | |
tree | da143de60c5decb4435e252952a3c1b6a97c620a /src/com/android/camera/Camera.java | |
parent | d7a60abbee203872df4b5ab9a873e7efad80e239 (diff) | |
download | LegacyCamera-131cf9886c4f34431598be0b1f5b7aaa915277cc.zip LegacyCamera-131cf9886c4f34431598be0b1f5b7aaa915277cc.tar.gz LegacyCamera-131cf9886c4f34431598be0b1f5b7aaa915277cc.tar.bz2 |
Add hysteresis to orientation rounding.
This prevents fast flickering between two orientation states, which
can result in ugly UI issues, especially with the preview thumbnail.
Bug: 5477483
Change-Id: I9513547207ae1918066c1a19947c974eaad72e24
Diffstat (limited to 'src/com/android/camera/Camera.java')
-rw-r--r-- | src/com/android/camera/Camera.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/com/android/camera/Camera.java b/src/com/android/camera/Camera.java index 685319f..589a5c8 100644 --- a/src/com/android/camera/Camera.java +++ b/src/com/android/camera/Camera.java @@ -1184,10 +1184,6 @@ public class Camera extends ActivityBase implements FocusManager.Listener, if (mThumbnailView != null) mThumbnailView.setEnabled(enable); } - public static int roundOrientation(int orientation) { - return ((orientation + 45) / 90 * 90) % 360; - } - private class MyOrientationEventListener extends OrientationEventListener { public MyOrientationEventListener(Context context) { @@ -1200,7 +1196,7 @@ public class Camera extends ActivityBase implements FocusManager.Listener, // the camera then point the camera to floor or sky, we still have // the correct orientation. if (orientation == ORIENTATION_UNKNOWN) return; - mOrientation = roundOrientation(orientation); + mOrientation = Util.roundOrientation(orientation, mOrientation); // When the screen is unlocked, display rotation may change. Always // calculate the up-to-date orientationCompensation. int orientationCompensation = mOrientation |