Searched refs:recentsButton (Results 1 – 2 of 2) sorted by relevance
190 View recentsButton = mNavigationBarView.getRecentsButton().getCurrentView(); in handleDragActionDownEvent() local191 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()
748 ButtonDispatcher recentsButton = mNavigationBarView.getRecentsButton(); in prepareNavigationBarView() local749 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()