HomeSort by relevance Sort by last modified time
    Searched refs:mCurrView (Results 1 - 3 of 3) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 80 private View mCurrView;
271 mCurrView = mCallback.getChildAtPosition(ev);
273 if (mCurrView != null) {
274 onDownUpdate(mCurrView, ev);
275 mCanCurrViewBeDimissed = mCallback.canChildBeDismissed(mCurrView);
279 mTranslation = getTranslation(mCurrView);
285 if (mCurrView != null && !mLongPressSent) {
287 mCurrView.sendAccessibilityEvent(
289 mCurrView.getLocationOnScreen(mTmpPos);
293 if (mCurrView instanceof ExpandableNotificationRow)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/notification/
SwipeHelper.java 75 private View mCurrView;
262 mCurrView = mCallback.getChildAtPosition(ev);
264 if (mCurrView != null) {
265 onDownUpdate(mCurrView);
266 mCanCurrViewBeDimissed = mCallback.canChildBeDismissed(mCurrView);
270 mTranslation = getTranslation(mCurrView);
276 if (mCurrView != null && !mLongPressSent) {
278 mCurrView.sendAccessibilityEvent(
280 mCurrView.getLocationOnScreen(mTmpPos);
283 mLongPressListener.onLongPress(mCurrView, x, y)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeHelper.java 76 private SwipeableItemView mCurrView;
210 mCurrView = (SwipeableItemView) view;
213 if (mCurrView != null) {
214 mCurrAnimView = mCurrView.getSwipeableView().getView();
215 mCanCurrViewBeDimissed = mCallback.canChildBeDismissed(mCurrView);
223 if (mCurrView != null) {
230 if (deltaY > mCurrView.getMinAllowScrollDistance()
241 mCallback.onBeginDrag(mCurrView.getSwipeableView().getView());
253 mCurrView = null;
340 mCallback.onDragCancelled(mCurrView);
    [all...]

Completed in 256 milliseconds