summaryrefslogtreecommitdiffstats
path: root/src_ui_overrides
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2018-05-09 16:00:43 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2018-05-09 16:00:43 +0000
commit639b07178f6412cd931818c7787c5f6effd42317 (patch)
tree9730cc766527bdf8c8b4d8a52c681b24a5a5f99e /src_ui_overrides
parente3a968090a78c16e3032842373ea5ee01c29e014 (diff)
parent59d086c3ce5d9c3d800abca73762e82f2489cbec (diff)
downloadandroid_packages_apps_Trebuchet-639b07178f6412cd931818c7787c5f6effd42317.tar.gz
android_packages_apps_Trebuchet-639b07178f6412cd931818c7787c5f6effd42317.tar.bz2
android_packages_apps_Trebuchet-639b07178f6412cd931818c7787c5f6effd42317.zip
Merge "Using surface rotation instead of insets to determine seascape configuration" into ub-launcher3-edmonton
Diffstat (limited to 'src_ui_overrides')
-rw-r--r--src_ui_overrides/com/android/launcher3/uioverrides/DisplayRotationListener.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/src_ui_overrides/com/android/launcher3/uioverrides/DisplayRotationListener.java b/src_ui_overrides/com/android/launcher3/uioverrides/DisplayRotationListener.java
new file mode 100644
index 000000000..b1a67e9f2
--- /dev/null
+++ b/src_ui_overrides/com/android/launcher3/uioverrides/DisplayRotationListener.java
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2018 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.launcher3.uioverrides;
+
+import android.content.Context;
+import android.view.OrientationEventListener;
+
+/**
+ * Utility class for listening for rotation changes
+ */
+public class DisplayRotationListener extends OrientationEventListener {
+
+ private final Runnable mCallback;
+
+ public DisplayRotationListener(Context context, Runnable callback) {
+ super(context);
+ mCallback = callback;
+ }
+
+ @Override
+ public void onOrientationChanged(int i) {
+ mCallback.run();
+ }
+}