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

/frameworks/support/v4/api23/android/support/v4/view/
H A DViewCompatMarshmallow.java22 public static void setScrollIndicators(View view, int indicators) { argument
23 view.setScrollIndicators(indicators);
26 public static void setScrollIndicators(View view, int indicators, int mask) { argument
27 view.setScrollIndicators(indicators, mask);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java476 void setScrollIndicators(View view, int indicators); argument
477 void setScrollIndicators(View view, int indicators, int mask); argument
1092 public void setScrollIndicators(View view, int indicators) { argument
1097 public void setScrollIndicators(View view, int indicators, int mask) { argument
1730 public void setScrollIndicators(View view, int indicators) { argument
1731 ViewCompatMarshmallow.setScrollIndicators(view, indicators);
1735 public void setScrollIndicators(View view, int indicators, int mask) { argument
1736 ViewCompatMarshmallow.setScrollIndicators(view, indicators, mask);
3393 * Sets the state of all scroll indicators.
3397 * @param indicators
3403 setScrollIndicators(@onNull View view, @ScrollIndicators int indicators) argument
3434 setScrollIndicators(@onNull View view, @ScrollIndicators int indicators, @ScrollIndicators int mask) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertController.java491 // Update scroll indicators as needed.
495 final int indicators = (hasTopPanel ? ViewCompat.SCROLL_INDICATOR_TOP : 0)
497 setScrollIndicators(contentPanel, content, indicators,
514 final int indicators, final int mask) {
515 // Set up scroll indicators (if present).
521 ViewCompat.setScrollIndicators(content, indicators, mask);
531 if (indicatorUp != null && (indicators & ViewCompat.SCROLL_INDICATOR_TOP) == 0) {
535 if (indicatorDown != null && (indicators & ViewCompat.SCROLL_INDICATOR_BOTTOM) == 0) {
555 // Set up the indicators following layout.
574 // Set up the indicators followin
513 setScrollIndicators(ViewGroup contentPanel, View content, final int indicators, final int mask) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java548 // Update scroll indicators as needed.
552 final int indicators = (hasTopPanel ? View.SCROLL_INDICATOR_TOP : 0)
554 content.setScrollIndicators(indicators,
/frameworks/base/core/java/android/view/
H A DView.java2532 * scroll indicators are enabled.
5260 * Sets the state of all scroll indicators.
5264 * @param indicators a bitmask of indicators that should be enabled, or
5265 * {@code 0} to disable all indicators
5270 public void setScrollIndicators(@ScrollIndicators int indicators) { argument
5271 setScrollIndicators(indicators,
5276 * Sets the state of the scroll indicators specified by the mask. To change
5277 * all scroll indicators at once, see {@link #setScrollIndicators(int)}.
5288 * @param indicators th
5302 setScrollIndicators(@crollIndicators int indicators, @ScrollIndicators int mask) argument
[all...]

Completed in 2010 milliseconds