Home
last modified time | relevance | path

Searched refs:swipeDirection (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DPageIndicator.java91 int swipeDirection = keyCode == KeyEvent.KEYCODE_DPAD_LEFT ? LEFT : RIGHT; in PageIndicator()
92 mPageScrollActionListener.onScrollActionTriggered(swipeDirection); in PageIndicator()
347 void onScrollActionTriggered(@Direction int swipeDirection);
DPagedTileLayout.java321 mPageIndicator.setPageScrollActionListener(swipeDirection -> { in setPageIndicator()
323 scrollByX(getDeltaXForPageScrolling(swipeDirection), in setPageIndicator()
329 private int getDeltaXForPageScrolling(@Direction int swipeDirection) { in getDeltaXForPageScrolling() argument
330 if (swipeDirection == LEFT && getCurrentItem() != 0) { in getDeltaXForPageScrolling()
332 } else if (swipeDirection == RIGHT && getCurrentItem() != mPages.size() - 1) { in getDeltaXForPageScrolling()