summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2020-06-17 01:15:07 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2020-06-17 01:15:07 +0000
commit26d281bd7437cf138d7c383970649604562c530f (patch)
treed42c6d048711c15191054064c1b3c033ace320e4
parent7399b903d5c022e44a56d89ec6c50d720c89878d (diff)
parent9a70e1c9b4f8d91437421a7c8b471feb4a6ffdde (diff)
downloadQuickAccessWallet-26d281bd7437cf138d7c383970649604562c530f.tar.gz
Snap for 6596975 from 9a70e1c9b4f8d91437421a7c8b471feb4a6ffdde to rvc-release
Change-Id: I71893ac1f4b7f65fd4707e955b876150140496cc
-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));