summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Pont <seanpont@google.com>2020-06-16 09:41:41 -0700
committerSean Pont <seanpont@google.com>2020-06-16 09:41:41 -0700
commit9a70e1c9b4f8d91437421a7c8b471feb4a6ffdde (patch)
treed42c6d048711c15191054064c1b3c033ace320e4
parentd9300f77619b3482f421976daf3580ad3d989b0f (diff)
downloadQuickAccessWallet-9a70e1c9b4f8d91437421a7c8b471feb4a6ffdde.tar.gz
Remove systemExclusionZone when only 1 card shown
Fixes: 158721734 Test: manual Test: atest QuickAccessWalletRoboTests Change-Id: Icd4b850b64d97ffbb21080692836dff45d0d0d06
-rw-r--r--src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java b/src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java
index 10f2205..1a27acc 100644
--- a/src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java
+++ b/src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java
@@ -20,8 +20,6 @@ import android.annotation.NonNull;
import android.annotation.Nullable;
import android.content.Context;
import android.graphics.Rect;
-import android.os.Build.VERSION;
-import android.os.Build.VERSION_CODES;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.view.HapticFeedbackConstants;
@@ -136,7 +134,7 @@ class WalletCardCarousel extends RecyclerView {
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
int width = getWidth();
- if (VERSION.SDK_INT >= VERSION_CODES.Q) {
+ if (mWalletCardAdapter.getItemCount() > 1) {
// Whole carousel is opted out from system gesture.
mSystemGestureExclusionZone.set(0, 0, width, getHeight());
setSystemGestureExclusionRects(Collections.singletonList(mSystemGestureExclusionZone));