Searched refs:scrollable (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DEditTextActivityDialog.java88 protected Dialog createDialog(boolean scrollable) { argument
92 if (scrollable) {
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompatIcs.java182 public static void setScrollable(Object record, boolean scrollable) { argument
183 ((AccessibilityRecord) record).setScrollable(scrollable);
H A DAccessibilityNodeInfoCompatIcs.java200 public static void setScrollable(Object info, boolean scrollable) { argument
201 ((AccessibilityNodeInfo) info).setScrollable(scrollable);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java48 public void setScrollable(Object record, boolean scrollable); argument
250 public void setScrollable(Object record, boolean scrollable) { argument
460 public void setScrollable(Object record, boolean scrollable) { argument
461 AccessibilityRecordCompatIcs.setScrollable(record, scrollable);
690 * Gets if the source is scrollable.
692 * @return True if the source is scrollable, false otherwise.
699 * Sets if the source is scrollable.
701 * @param scrollable True if the source is scrollable, false otherwise.
705 public void setScrollable(boolean scrollable) { argument
[all...]
H A DAccessibilityNodeInfoCompat.java85 public void setScrollable(Object info, boolean scrollable); argument
354 public void setScrollable(Object info, boolean scrollable) { argument
611 public void setScrollable(Object info, boolean scrollable) { argument
612 AccessibilityNodeInfoCompatIcs.setScrollable(info, scrollable);
1597 * Gets if the node is scrollable.
1599 * @return True if the node is scrollable, false otherwise.
1606 * Sets if the node is scrollable.
1613 * @param scrollable True if the node is scrollable, false otherwise.
1616 public void setScrollable(boolean scrollable) { argument
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java275 * Gets if the source is scrollable.
277 * @return True if the source is scrollable, false otherwise.
284 * Sets if the source is scrollable.
286 * @param scrollable True if the source is scrollable, false otherwise.
290 public void setScrollable(boolean scrollable) { argument
292 setBooleanProperty(PROPERTY_SCROLLABLE, scrollable);
H A DAccessibilityNodeInfo.java1108 * Gets if the node is scrollable.
1110 * @return True if the node is scrollable, false otherwise.
1117 * Sets if the node is scrollable.
1124 * @param scrollable True if the node is scrollable, false otherwise.
1128 public void setScrollable(boolean scrollable) { argument
1130 setBooleanProperty(PROPERTY_SCROLLABLE, scrollable);
1864 builder.append("; scrollable: " + isScrollable());
/frameworks/base/core/java/android/widget/
H A DScrollView.java820 final boolean scrollable = getScrollRange() > 0;
821 event.setScrollable(scrollable);
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiSelector.java383 * Set the search criteria to match widgets that are scrollable.
397 public UiSelector scrollable(boolean val) { method in class:UiSelector

Completed in 184 milliseconds