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.java180 View recentsButton = mNavigationBarView.getRecentsButton().getCurrentView(); in handleDragActionDownEvent() local
181 if (recentsButton != null) { in handleDragActionDownEvent()
182 mDownOnRecents = mTouchDownX >= recentsButton.getLeft() in handleDragActionDownEvent()
183 && mTouchDownX <= recentsButton.getRight() in handleDragActionDownEvent()
184 && mTouchDownY >= recentsButton.getTop() in handleDragActionDownEvent()
185 && mTouchDownY <= recentsButton.getBottom(); in handleDragActionDownEvent()
DNavigationBarFragment.java388 ButtonDispatcher recentsButton = mNavigationBarView.getRecentsButton(); in prepareNavigationBarView() local
389 recentsButton.setOnClickListener(this::onRecentsClick); in prepareNavigationBarView()
390 recentsButton.setOnTouchListener(this::onRecentsTouch); in prepareNavigationBarView()
391 recentsButton.setLongClickable(true); in prepareNavigationBarView()
392 recentsButton.setOnLongClickListener(this::onLongPressBackRecents); in prepareNavigationBarView()