From 8e4192fa4fe559fbf52f099a91683db3b72d2431 Mon Sep 17 00:00:00 2001 From: Andreas Miko Date: Fri, 17 Feb 2023 17:04:48 +0100 Subject: [PATCH] Add unlock animation for foldables Test: Unit tests added Test: Manual tests on foldable device going through unlock on outer and inner screens Bug: b/261584499 Change-Id: I9cdb717400c82e7a0bb4d58d6d25d8b794200af3 --- src/com/android/launcher3/PagedView.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/com/android/launcher3/PagedView.java b/src/com/android/launcher3/PagedView.java index c7431edb5b..147027cd96 100644 --- a/src/com/android/launcher3/PagedView.java +++ b/src/com/android/launcher3/PagedView.java @@ -16,8 +16,6 @@ package com.android.launcher3; -import static androidx.annotation.VisibleForTesting.PACKAGE_PRIVATE; - import static com.android.launcher3.anim.Interpolators.SCROLL; import static com.android.launcher3.compat.AccessibilityManagerCompat.isAccessibilityEnabled; import static com.android.launcher3.compat.AccessibilityManagerCompat.isObservedEventType; @@ -52,7 +50,6 @@ import android.widget.OverScroller; import android.widget.ScrollView; import androidx.annotation.Nullable; -import androidx.annotation.VisibleForTesting; import com.android.launcher3.compat.AccessibilityManagerCompat; import com.android.launcher3.config.FeatureFlags; @@ -319,7 +316,6 @@ public abstract class PagedView extends ViewGrou /** * Returns an IntSet with the indices of the currently visible pages */ - @VisibleForTesting(otherwise = PACKAGE_PRIVATE) public IntSet getVisiblePageIndices() { return getPageIndices(mCurrentPage); }