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

/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 DExpandableListView.java187 /** Drawable to be used as a divider when it is adjacent to any children */
311 // Use item's full height + the divider height
380 * be drawn using the same height as the normal divider ({@link #setDivider(Drawable)}) or
393 // Only proceed as possible child if the divider isn't above all items (if it is above
401 // These are the cases where we draw the child divider
402 final Drawable divider = mChildDivider;
403 divider.setBounds(bounds);
404 divider.draw(canvas);
411 // Otherwise draw the default divider
H A DListView.java157 // If a divider is specified use its intrinsic height for divider height
1198 * returns the height with this ListView's padding and divider heights
1251 // Count the divider for all but one child
3184 // Draw top divider or header for overscroll
3253 // Give the method the child ABOVE the divider, so we
3256 // divider.
3296 * Draws a divider for the given child in the given bounds.
3299 * @param bounds The bounds of the divider.
3300 * @param childIndex The index of child (of the View) above the divider
3327 setDivider(Drawable divider) argument
[all...]
H A DTimePicker.java164 // divider (only for the new widget style)
165 mDivider = (TextView) findViewById(R.id.divider);
/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);

Completed in 404 milliseconds