Lines Matching refs:location

325  * The geometry of a view is that of a rectangle. A view has a location,
327 * two dimensions, expressed as a width and a height. The unit for location
332 * It is possible to retrieve the location of a view by invoking the methods
336 * both return the location of the view relative to its parent. For instance,
1855 * Indicates that this view is currently directly under the drag location in a
6083 * Gets the location of this view in screen coordinates.
6085 * @param outRect The output location
6093 * Gets the location of this view in screen coordinates.
6095 * @param outRect The output location
7092 * far edges of the window, not accounting for the location of the called view
11290 * The x location of the point around which the view is {@link #setRotation(float) rotated}
11297 * @return The x location of the pivot point.
11307 * Sets the x location of the point around which the view is
11313 * @param pivotX The x location of the pivot point.
11332 * The y location of the point around which the view is {@link #setRotation(float) rotated}
11339 * @return The y location of the pivot point.
11349 * Sets the y location of the point around which the view is {@link #setRotation(float) rotated}
11354 * @param pivotY The y location of the pivot point.
11879 * The horizontal location of this view relative to its {@link #getLeft() left} position.
11891 * Sets the horizontal location of this view relative to its {@link #getLeft() left} position.
11912 * The vertical location of this view relative to its {@link #getTop() top} position.
11925 * Sets the vertical location of this view relative to its {@link #getTop() top} position.
11946 * The depth location of this view relative to its {@link #getElevation() elevation}.
11956 * Sets the depth location of this view relative to its {@link #getElevation() elevation}.
12251 * Offset this view's vertical location by the specified number of pixels.
12302 * Offset this view's horizontal location by the specified amount of pixels.
18185 int[] location = new int[2];
18186 getLocationOnScreen(location);
18187 return location;
18193 * contains the x and y location in that order.</p>
18195 * @param location an array of two integers in which to hold the coordinates
18197 public void getLocationOnScreen(@Size(2) int[] location) {
18198 getLocationInWindow(location);
18202 location[0] += info.mWindowLeft;
18203 location[1] += info.mWindowTop;
18210 * contains the x and y location in that order.</p>
18212 * @param location an array of two integers in which to hold the coordinates
18214 public void getLocationInWindow(@Size(2) int[] location) {
18215 if (location == null || location.length < 2) {
18216 throw new IllegalArgumentException("location must be an array of two integers");
18221 location[0] = location[1] = 0;
18258 location[0] = (int) (position[0] + 0.5f);
18259 location[1] = (int) (position[1] + 0.5f);
18335 * boundary since the user can touch the screen at an arbitrary location
19209 final int[] location = attachInfo.mTransparentLocation;
19210 getLocationInWindow(location);
19211 region.op(location[0], location[1], location[0] + mRight - mLeft,
19212 location[1] + mBottom - mTop, Region.Op.DIFFERENCE);
19500 * be centered under the touch location while dragging.
19750 final int[] location = attachInfo.mTransparentLocation;
19751 getLocationInWindow(location);
19752 r.translate(location[0], location[1]);
21757 * computing absolute on-screen location.
21763 * x/y location when view is transformed.