Searched refs:divider (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java425 /* Only display the divider if we have a title and a
429 View divider = null;
431 divider = mWindow.findViewById(R.id.titleDivider);
433 divider = mWindow.findViewById(R.id.titleDividerTop);
436 if (divider != null) {
437 divider.setVisibility(View.VISIBLE);
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java68 * Show a divider at the beginning of the group.
76 * Show a divider at the end of the group.
238 * @return the divider Drawable that will divide each item.
249 * Set a drawable to be used as a divider between items.
251 * @param divider Drawable that will divide each item.
257 public void setDividerDrawable(Drawable divider) { argument
258 if (divider == mDivider) {
261 mDivider = divider;
262 if (divider != null) {
263 mDividerWidth = divider
[all...]
H A DListView.java160 // If a divider is specified use its intrinsic height for divider height
1215 * returns the height with this ListView's padding and divider heights
1268 // Count the divider for all but one child
3243 // Draw top divider or header for overscroll
3328 // Give the method the child ABOVE the divider,
3331 // divider.
3371 * Draws a divider for the given child in the given bounds.
3374 * @param bounds The bounds of the divider.
3375 * @param childIndex The index of child (of the View) above the divider
3402 setDivider(Drawable divider) argument
[all...]
H A DExpandableListView.java216 /** Drawable to be used as a divider when it is adjacent to any children */
440 // Use item's full height + the divider height
509 * be drawn using the same height as the normal divider ({@link #setDivider(Drawable)}) or
522 // Only proceed as possible child if the divider isn't above all items (if it is above
530 // These are the cases where we draw the child divider
531 final Drawable divider = mChildDivider;
532 divider.setBounds(bounds);
533 divider.draw(canvas);
540 // Otherwise draw the default divider
H A DTimePicker.java169 // divider (only for the new widget style)
170 mDivider = (TextView) findViewById(R.id.divider);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DListPopupWindow.java1253 * with this ListView's padding and divider heights included. If maxHeight is provided, the
1286 final Drawable divider = getDivider();
1296 final int dividerHeight = ((reportedDividerHeight > 0) && divider != null)
1327 // Count the divider for all but one child

Completed in 161 milliseconds