Home | History | Annotate | Download | only in view

Lines Matching defs:rectangle

312  * The geometry of a view is that of a rectangle. A view has a location,
321 * coordinate of the rectangle representing the view. The latter returns the
322 * top, or Y, coordinate of the rectangle representing the view. These methods
332 * rectangle representing the view. For instance, calling {@link #getRight()}
4941 * @param previouslyFocusedRect The rectangle of the view that had focus
4984 * Request that a rectangle of this view be visible on the screen,
4991 * @param rectangle The rectangle.
4994 public boolean requestRectangleOnScreen(Rect rectangle) {
4995 return requestRectangleOnScreen(rectangle, false);
4999 * Request that a rectangle of this view be visible on the screen,
5009 * @param rectangle The rectangle.
5013 public boolean requestRectangleOnScreen(Rect rectangle, boolean immediate) {
5021 position.set(rectangle);
5026 rectangle.set((int) position.left, (int) position.top,
5030 rectangle, immediate);
5174 * @param previouslyFocusedRect The rectangle, in this view's coordinate
5815 // Check if the visible portion intersects the rectangle of interest.
7618 * <code>null</code> set for the previously focused rectangle.
7629 * and give it hints about the direction and a specific rectangle that the focus
7630 * is coming from. The rectangle can help give larger views a finer grained hint
7651 * @param previouslyFocusedRect The rectangle (in this View's coordinate system)
10015 * rectangle with the values from getScrollX(), getScrollY(),
11250 * Hit rectangle in parent's coordinates
11252 * @param outRect The hit rectangle of the view.
11289 * starting from the rectangle filled in by this method.
11291 * By default, the rectangle is the {@link #getDrawingRect(android.graphics.Rect)})
11294 * fill in a more specific rectangle.
11296 * @param r The rectangle to fill in, in this view's coordinates.
11711 * @param dirty the rectangle representing the bounds of the dirty region
11795 // Propagate the damage rectangle to the parent view.
12193 * @param left The left coordinate of the rectangle to invalidate.
12194 * @param top The top coordinate of the rectangle to invalidate.
12195 * @param right The right coordinate of the rectangle to invalidate.
12196 * @param bottom The bottom coordinate of the rectangle to invalidate.
12237 * @param left The left coordinate of the rectangle to invalidate.
12238 * @param top The top coordinate of the rectangle to invalidate.
12239 * @param right The right coordinate of the rectangle to invalidate.
12240 * @param bottom The bottom coordinate of the rectangle to invalidate.
12289 * @param left The left coordinate of the rectangle to invalidate.
12290 * @param top The top coordinate of the rectangle to invalidate.
12291 * @param right The right coordinate of the rectangle to invalidate.
12292 * @param bottom The bottom coordinate of the rectangle to invalidate.
20192 * the coordinates of the dirty rectangle.