Home | History | Annotate | Download | only in view

Lines Matching defs:rectangle

299  * The geometry of a view is that of a rectangle. A view has a location,
308 * coordinate of the rectangle representing the view. The latter returns the
309 * top, or Y, coordinate of the rectangle representing the view. These methods
319 * rectangle representing the view. For instance, calling {@link #getRight()}
4360 * @param previouslyFocusedRect The rectangle of the view that had focus
4385 * Request that a rectangle of this view be visible on the screen,
4392 * @param rectangle The rectangle.
4395 public boolean requestRectangleOnScreen(Rect rectangle) {
4396 return requestRectangleOnScreen(rectangle, false);
4400 * Request that a rectangle of this view be visible on the screen,
4410 * @param rectangle The rectangle.
4414 public boolean requestRectangleOnScreen(Rect rectangle, boolean immediate) {
4422 position.set(rectangle);
4427 rectangle.set((int) position.left, (int) position.top,
4431 rectangle, immediate);
4557 * @param previouslyFocusedRect The rectangle, in this view's coordinate
5113 // Check if the visible portion intersects the rectangle of interest.
6600 * <code>null</code> set for the previously focused rectangle.
6611 * and give it hints about the direction and a specific rectangle that the focus
6612 * is coming from. The rectangle can help give larger views a finer grained hint
6633 * @param previouslyFocusedRect The rectangle (in this View's coordinate system)
8685 * rectangle with the values from getScrollX(), getScrollY(),
9792 * Hit rectangle in parent's coordinates
9794 * @param outRect The hit rectangle of the view.
9832 * starting from the rectangle filled in by this method.
9834 * By default, the rectangle is the {@link #getDrawingRect(android.graphics.Rect)})
9837 * fill in a more specific rectangle.
9839 * @param r The rectangle to fill in, in this view's coordinates.
10251 * @param dirty the rectangle representing the bounds of the dirty region
10686 * @param left The left coordinate of the rectangle to invalidate.
10687 * @param top The top coordinate of the rectangle to invalidate.
10688 * @param right The right coordinate of the rectangle to invalidate.
10689 * @param bottom The bottom coordinate of the rectangle to invalidate.
10730 * @param left The left coordinate of the rectangle to invalidate.
10731 * @param top The top coordinate of the rectangle to invalidate.
10732 * @param right The right coordinate of the rectangle to invalidate.
10733 * @param bottom The bottom coordinate of the rectangle to invalidate.
10782 * @param left The left coordinate of the rectangle to invalidate.
10783 * @param top The top coordinate of the rectangle to invalidate.
10784 * @param right The right coordinate of the rectangle to invalidate.
10785 * @param bottom The bottom coordinate of the rectangle to invalidate.
17616 * the coordinates of the dirty rectangle.