Searched defs:divider (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DLinearLayout.java88 * Show a divider at the beginning of the group.
96 * Show a divider at the end of the group.
263 * @return the divider Drawable that will divide each item.
274 * Set a drawable to be used as a divider between items.
276 * @param divider Drawable that will divide each item.
282 public void setDividerDrawable(Drawable divider) { argument
283 if (divider == mDivider) {
286 mDivider = divider;
287 if (divider != null) {
288 mDividerWidth = divider
[all...]
H A DListView.java165 // If a divider is specified use its intrinsic height for divider height
1222 * returns the height with this ListView's padding and divider heights
1275 // Count the divider for all but one child
3278 // Draw top divider or header for overscroll
3361 // Give the method the child ABOVE the divider,
3364 // divider.
3404 * Draws a divider for the given child in the given bounds.
3407 * @param bounds The bounds of the divider.
3408 * @param childIndex The index of child (of the View) above the divider
3435 setDivider(Drawable divider) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java81 * Show a divider at the beginning of the group.
89 * Show a divider at the end of the group.
213 * @return the divider Drawable that will divide each item.
222 * Set a drawable to be used as a divider between items.
224 * @param divider Drawable that will divide each item.
228 public void setDividerDrawable(Drawable divider) { argument
229 if (divider == mDivider) {
232 mDivider = divider;
233 if (divider != null) {
234 mDividerWidth = divider
[all...]

Completed in 118 milliseconds