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

/frameworks/support/compat/ics/android/support/v4/view/accessibility/
H A DAccessibilityEventCompatIcs.java39 public static void setScrollable(AccessibilityEvent event, boolean scrollable) { argument
40 event.setScrollable(scrollable);
H A DAccessibilityRecordCompatIcs.java182 public static void setScrollable(Object record, boolean scrollable) { argument
183 ((AccessibilityRecord) record).setScrollable(scrollable);
H A DAccessibilityNodeInfoCompatIcs.java199 public static void setScrollable(Object info, boolean scrollable) { argument
200 ((AccessibilityNodeInfo) info).setScrollable(scrollable);
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DEditTextActivityDialog.java88 protected Dialog createDialog(boolean scrollable) { argument
92 if (scrollable) {
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java49 public void setScrollable(Object record, boolean scrollable); argument
294 public void setScrollable(Object record, boolean scrollable) { argument
507 public void setScrollable(Object record, boolean scrollable) { argument
508 AccessibilityRecordCompatIcs.setScrollable(record, scrollable);
746 * Gets if the source is scrollable.
748 * @return True if the source is scrollable, false otherwise.
755 * Sets if the source is scrollable.
757 * @param scrollable True if the source is scrollable, false otherwise.
761 public void setScrollable(boolean scrollable) { argument
[all...]
H A DAccessibilityNodeInfoCompat.java781 void setScrollable(Object info, boolean scrollable); argument
1165 public void setScrollable(Object info, boolean scrollable) { argument
1787 public void setScrollable(Object info, boolean scrollable) { argument
1788 AccessibilityNodeInfoCompatIcs.setScrollable(info, scrollable);
3492 * Gets if the node is scrollable.
3494 * @return True if the node is scrollable, false otherwise.
3501 * Sets if the node is scrollable.
3508 * @param scrollable True if the node is scrollable, false otherwise.
3511 public void setScrollable(boolean scrollable) { argument
[all...]
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiSelector.java408 * Set the search criteria to match widgets that are scrollable.
422 public UiSelector scrollable(boolean val) { method in class:UiSelector
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java281 * Gets if the source is scrollable.
283 * @return True if the source is scrollable, false otherwise.
290 * Sets if the source is scrollable.
292 * @param scrollable True if the source is scrollable, false otherwise.
296 public void setScrollable(boolean scrollable) { argument
298 setBooleanProperty(PROPERTY_SCROLLABLE, scrollable);
H A DAccessibilityNodeInfo.java1819 * Gets if the node is scrollable.
1821 * @return True if the node is scrollable, false otherwise.
1828 * Sets if the node is scrollable.
1835 * @param scrollable True if the node is scrollable, false otherwise.
1839 public void setScrollable(boolean scrollable) { argument
1840 setBooleanProperty(BOOLEAN_PROPERTY_SCROLLABLE, scrollable);
3285 builder.append("; scrollable: ").append(isScrollable());

Completed in 187 milliseconds