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