Home | History | Annotate | Download | only in launcher3

Lines Matching refs:mDragView

228     protected View mDragView;
397 if (mDragView != null) {
399 (mDragViewBaselineLeft - mDragView.getLeft());
401 mDragView.setTranslationX(x);
402 mDragView.setTranslationY(y);
1195 if (v == mDragView) continue;
1202 if (mDragView != null) {
1203 drawChild(canvas, mDragView, drawingTime);
1684 if (mDragView != null) {
1685 int dragX = (int) (mDragView.getLeft() + (mDragView.getMeasuredWidth() / 2)
1686 + mDragView.getTranslationX());
1689 int minIndex = indexOfChild(mDragView);
1787 final int dragViewIndex = indexOfChild(mDragView);
1800 if (pageUnderPointIndex > -1 && pageUnderPointIndex != indexOfChild(mDragView) &&
1847 removeView(mDragView);
1848 onRemoveView(mDragView, false);
1849 addView(mDragView, pageUnderPointIndex);
1850 onAddView(mDragView, pageUnderPointIndex);
2440 if (mDragView != null) {
2444 ObjectAnimator.ofFloat(mDragView, "translationX", 0f),
2445 ObjectAnimator.ofFloat(mDragView, "translationY", 0f),
2446 ObjectAnimator.ofFloat(mDragView, "scaleX", 1f),
2447 ObjectAnimator.ofFloat(mDragView, "scaleY", 1f));
2496 mDragView = getChildAt(dragViewIndex);
2497 mDragView.animate().scaleX(1.15f).scaleY(1.15f).setDuration(100).start();
2498 mDragViewBaselineLeft = mDragView.getLeft();
2539 snapToPage(indexOfChild(mDragView), 0);
2574 private View mDragView;
2584 mDragView = dragView;
2588 mFriction = 1f - (mDragView.getResources().getDisplayMetrics().density * friction);
2599 mDragView.setTranslationX(mFrom.left);
2600 mDragView.setTranslationY(mFrom.top);
2601 mDragView.setAlpha(1f - mAlphaInterpolator.getInterpolation(t));
2726 final View dragView = mDragView;
2767 final View dragView = mDragView;