Lines Matching defs:right

295  * right of the left edge of its direct parent.
301 * These methods return the coordinates of the right and bottom edges of the
333 * is expressed in pixels for the left, top, right and bottom parts of the view.
336 * 2 pixels to the right of the left edge. Padding can be set using the
954 * Use with {@link #focusSearch}. Move focus to the right.
1646 * to the right edge of this view.
1689 * The right padding in pixels, that is the distance in pixels between the
1690 * right edge of this view and the right edge of its content.
3075 mPaddingRight = insets.right;
4085 outRect.right -= insets.right;
4476 // If the post failed, unpress right now
4824 outRect.right = mScrollX + (mRight - mLeft);
4883 * @return The right edge of this view, in pixels.
5224 dirty.right - scrollX, dirty.bottom - scrollY);
5238 * @param r the right position of the dirty region
5431 * @param right The right coordinate of the rectangle to invalidate.
5437 public void postInvalidate(int left, int top, int right, int bottom) {
5438 postInvalidateDelayed(0, left, top, right, bottom);
5467 * @param right The right coordinate of the rectangle to invalidate.
5471 int right, int bottom) {
5480 info.right = right;
5613 * Returns the strength, or intensity, of the right faded edge. The strength is
5620 * @return the intensity of the right fade as a float between 0.0f and 1.0f
5949 int left, top, right, bottom;
5959 right = scrollX + width - (mUserPaddingRight & inside) - verticalScrollBarGap;
5961 onDrawHorizontalScrollBar(canvas, scrollBar, left, top, right, bottom);
5963 invalidate(left, top, right, bottom);
5974 right = left + size;
5976 onDrawVerticalScrollBar(canvas, scrollBar, left, top, right, bottom);
5978 invalidate(left, top, right, bottom);
6779 * Amount by which to extend the right fading region. Called only when
6782 * @return The right padding offset in pixels.
6920 int right = left + mRight - mLeft - mPaddingRight - paddingLeft;
6925 right += getRightPaddingOffset();
6939 if (horizontalEdges && (left + length > right - length)) {
6940 length = (right - left) / 2;
6964 canvas.saveLayer(left, top, right, top + length, null, flags);
6968 canvas.saveLayer(left, bottom - length, right, bottom, null, flags);
6976 canvas.saveLayer(right - length, top, right, bottom, null, flags);
6998 canvas.drawRect(left, top, right, top + length, p);
7006 canvas.drawRect(left, bottom - length, right, bottom, p);
7020 matrix.postTranslate(right, top);
7022 canvas.drawRect(right - length, top, right, bottom, p);
7191 * @param right Right position, relative to parent
7194 protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
7204 * @param right Right position, relative to parent
7210 protected boolean setFrame(int left, int top, int right, int bottom) {
7215 + right + "," + bottom + ")");
7218 if (mLeft != left || mRight != right || mTop != top || mBottom != bottom) {
7233 mRight = right;
7238 int newWidth = right - left;
7294 dirty.right + scrollX, dirty.bottom + scrollY);
7571 setPadding(padding.left, padding.top, padding.right, padding.bottom);
7651 * @param right the right padding in pixels
7654 public void setPadding(int left, int top, int right, int bottom) {
7657 mUserPaddingRight = right;
7664 // TODO: Deal with RTL languages to adjust left padding instead of right.
7666 right += (viewFlags & SCROLLBARS_INSET_MASK) == 0
7683 if (mPaddingRight != right) {
7685 mPaddingRight = right;
7729 * Returns the right padding of this view. If there are inset and enabled
7733 * @return the right padding in pixels
8738 if (db.right < w) {
8739 //Log.i("VIEW", "Drawable right " + db.right + " < view " + w);
8740 r.op(db.right, 0, w, h, Region.Op.UNION);
8859 final int right = maxOverScrollX + scrollRangeX;
8864 if (newScrollX > right) {
8865 newScrollX = right;
9261 int right;