From 59d086c3ce5d9c3d800abca73762e82f2489cbec Mon Sep 17 00:00:00 2001 From: Sunny Goyal Date: Mon, 7 May 2018 17:31:40 -0700 Subject: Using surface rotation instead of insets to determine seascape configuration Insets may not correctly indicate seascape configuration in multi-window or when the presence of device-cutouts Bug: 79376298 Change-Id: I8268efca0001fe527a0ffefe48cc71e774fad01c --- .../uioverrides/DisplayRotationListener.java | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src_ui_overrides/com/android/launcher3/uioverrides/DisplayRotationListener.java (limited to 'src_ui_overrides/com/android/launcher3/uioverrides') 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(); + } +} -- cgit v1.2.3