Lines Matching refs:divider

168             // Use an implicit divider height which may be explicitly
183 // Use an explicit divider height, if specified.
1234 * returns the height with this ListView's padding and divider heights
1286 // Count the divider for all but one child
3300 // Draw top divider or header for overscroll
3383 // Give the method the child ABOVE the divider,
3386 // divider.
3426 * Draws a divider for the given child in the given bounds.
3429 * @param bounds The bounds of the divider.
3430 * @param childIndex The index of child (of the View) above the divider.
3431 * This will be -1 if there is no child above the divider to be
3435 // This widget draws the same divider for all children
3436 final Drawable divider = mDivider;
3438 divider.setBounds(bounds);
3439 divider.draw(canvas);
3459 * @param divider the drawable to use
3462 public void setDivider(@Nullable Drawable divider) {
3463 if (divider != null) {
3464 mDividerHeight = divider.getIntrinsicHeight();
3468 mDivider = divider;
3469 mDividerIsOpaque = divider == null || divider.getOpacity() == PixelFormat.OPAQUE;
3475 * @return Returns the height of the divider that will be drawn between each item in the list.
3482 * Sets the height of the divider that will be drawn between each item in the list. Calling
3485 * @param height The new height of the divider in pixels.
3494 * Enables or disables the drawing of the divider for header views.
3508 * @return Whether the drawing of the divider for header views is enabled
3517 * Enables or disables the drawing of the divider for footer views.
3531 * @return Whether the drawing of the divider for footer views is enabled