Searched defs:xPosInView (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DMagnifier.java151 * @param xPosInView horizontal coordinate of the center point of the magnifier source relative
158 public void show(@FloatRange(from = 0) float xPosInView, argument
160 xPosInView = Math.max(0, Math.min(xPosInView, mView.getWidth()));
164 obtainContentCoordinates(xPosInView, yPosInView);
169 if (xPosInView != mPrevPosInView.x || yPosInView != mPrevPosInView.y) {
180 mPrevPosInView.x = xPosInView;
298 private void obtainContentCoordinates(final float xPosInView, final float yPosInView) { argument
304 posX = xPosInView;
307 posX = xPosInView
[all...]

Completed in 34 milliseconds