Searched refs:mCardCarousel (Results 1 – 3 of 3) sorted by relevance
39 private WalletCardCarousel mCardCarousel; field in DotIndicatorDecoration69 mCardCarousel = (WalletCardCarousel) recyclerView; in onDrawOver()111 this.mCardCarousel = null; // No need to hold a reference. in onDrawOver()148 return mCardCarousel.mCenteredAdapterPosition == position; in isSelectedItem()153 return (mCardCarousel.mCenteredAdapterPosition + 1 == position in isNextItemInScrollingDirection()154 && mCardCarousel.mEdgeToCenterDistance >= 0f) in isNextItemInScrollingDirection()156 && mCardCarousel.mEdgeToCenterDistance < 0f); in isNextItemInScrollingDirection()158 return (mCardCarousel.mCenteredAdapterPosition - 1 == position in isNextItemInScrollingDirection()159 && mCardCarousel.mEdgeToCenterDistance >= 0f) in isNextItemInScrollingDirection()161 && mCardCarousel.mEdgeToCenterDistance < 0f); in isNextItemInScrollingDirection()[all …]
55 private final WalletCardCarousel mCardCarousel; field in WalletView83 mCardCarousel = requireViewById(R.id.card_carousel); in WalletView()84 mCardCarousel.setCardScrollListener(this); in WalletView()94 mAnimationTranslationX = mCardCarousel.getCardWidthPx() / 4f; in WalletView()100 mCardCarousel.setExpectedViewWidth(getWidth()); in onLayout()109 mCardCarousel.resetAdapter(); // necessary to update cards width in updateViewForOrientation()139 return mCardCarousel.onTouchEvent(event) || super.onTouchEvent(event); in onTouchEvent()180 mCardCarousel.setVisibility(VISIBLE); in showCardCarousel()196 mCardCarousel.animate().translationX(mAnimationTranslationX) in animateDismissal()211 mCardCarousel.setVisibility(GONE); in showEmptyStateView()[all …]
78 private final WalletCardCarousel mCardCarousel; field in WalletScreenController115 mCardCarousel = mWalletView.getCardCarousel(); in WalletScreenController()116 if (mCardCarousel != null) { in WalletScreenController()117 mCardCarousel.setSelectionListener(this); in WalletScreenController()193 mCardCarousel.smoothScrollToPosition(position); in onUncenteredClick()245 int cardWidthPx = mCardCarousel.getCardWidthPx(); in queryWalletCards()246 int cardHeightPx = mCardCarousel.getCardHeightPx(); in queryWalletCards()