Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavigationBarGestureHelper.java190 View recentsButton = mNavigationBarView.getRecentsButton().getCurrentView(); in handleDragActionDownEvent() local
191 if (recentsButton != null) { in handleDragActionDownEvent()
192 mDownOnRecents = mTouchDownX >= recentsButton.getLeft() in handleDragActionDownEvent()
193 && mTouchDownX <= recentsButton.getRight() in handleDragActionDownEvent()
194 && mTouchDownY >= recentsButton.getTop() in handleDragActionDownEvent()
195 && mTouchDownY <= recentsButton.getBottom(); in handleDragActionDownEvent()
DNavigationBarFragment.java748 ButtonDispatcher recentsButton = mNavigationBarView.getRecentsButton(); in prepareNavigationBarView() local
749 recentsButton.setOnClickListener(this::onRecentsClick); in prepareNavigationBarView()
750 recentsButton.setOnTouchListener(this::onRecentsTouch); in prepareNavigationBarView()
751 recentsButton.setLongClickable(true); in prepareNavigationBarView()
752 recentsButton.setOnLongClickListener(this::onLongPressBackRecents); in prepareNavigationBarView()