Lines Matching defs:padding

895      * Returns whether this RecyclerView will clip its children to its padding, and resize (but
896 * not clip) any EdgeEffect to the padded region, if padding is present.
898 * By default, children are clipped to the padding of their parent
899 * RecyclerView. This clipping behavior is only enabled if padding is non-zero.
901 * @return true if this RecyclerView clips children to its padding and resizes (but doesn't
1362 * will be nested; a padding added by an earlier decoration will mean further
1393 * will be nested; a padding added by an earlier decoration will mean further
3821 // TODO If padding is not 0 and clipChildrenToPadding is false, to draw glows properly, we
3826 final int padding = mClipToPadding ? getPaddingBottom() : 0;
3828 c.translate(-getHeight() + padding, 0);
3843 final int padding = mClipToPadding ? getPaddingTop() : 0;
3845 c.translate(-padding, -width);
6962 * The default implementation adds the RecyclerView's padding to the given bounding box
7076 * calculating the bounding box for the children (+ RecyclerView's padding). The
7349 * Check if the RecyclerView is configured to clip child views to its padding.
7351 * @return true if this RecyclerView clips children to its padding, false otherwise
8109 * Return the left padding of the parent RecyclerView
8118 * Return the top padding of the parent RecyclerView
8127 * Return the right padding of the parent RecyclerView
8136 * Return the bottom padding of the parent RecyclerView
8145 * Return the start padding of the parent RecyclerView
8154 * Return the end padding of the parent RecyclerView
8357 * Measure a child view using standard measurement policy, taking the padding
8455 * Measure a child view using standard measurement policy, taking the padding
8490 * @param padding Total space currently consumed by other elements of the parent
8499 public static int getChildMeasureSpec(int parentSize, int padding, int childDimension,
8501 int size = Math.max(0, parentSize - padding);
8535 * @param padding Total space currently consumed by other elements of parent
8542 public static int getChildMeasureSpec(int parentSize, int parentMode, int padding,
8544 int size = Math.max(0, parentSize - padding);
9720 * the number of pixels that the item view should be inset by, similar to padding or margin.