Searched refs:scrollable (Results 1 - 10 of 10) 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/compat/src/main/java/androidx/core/view/accessibility/
H A DAccessibilityRecordCompat.java278 * Gets if the source is scrollable.
280 * @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.
299 public void setScrollable(boolean scrollable) { argument
300 mRecord.setScrollable(scrollable);
H A DAccessibilityNodeInfoCompat.java2128 * Gets if the node is scrollable.
2130 * @return True if the node is scrollable, false otherwise.
2137 * Sets if the node is scrollable.
2144 * @param scrollable True if the node is scrollable, false otherwise.
2147 public void setScrollable(boolean scrollable) { argument
2148 mInfo.setScrollable(scrollable);
3462 builder.append("; scrollable: " + isScrollable());
/frameworks/support/slices/view/src/androidTest/java/androidx/slice/render/
H A DSliceRenderer.java147 true /* scrollable */);
155 "%s-serialized.png", slice)), true /* scrollable */);
164 "%s-no-scroll.png", slice)), false /* scrollable */);
204 final boolean scrollable) {
217 mSV3.setScrollable(scrollable);
203 doRender(final String slice, final Slice s, final File file, final boolean scrollable) argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityRecord.java295 * Gets if the source is scrollable.
297 * @return True if the source is scrollable, false otherwise.
304 * Sets if the source is scrollable.
306 * @param scrollable True if the source is scrollable, false otherwise.
310 public void setScrollable(boolean scrollable) { argument
312 setBooleanProperty(PROPERTY_SCROLLABLE, scrollable);
H A DAccessibilityNodeInfo.java1990 * Gets if the node is scrollable.
1992 * @return True if the node is scrollable, false otherwise.
1999 * Sets if the node is scrollable.
2006 * @param scrollable True if the node is scrollable, false otherwise.
2010 public void setScrollable(boolean scrollable) { argument
2011 setBooleanProperty(BOOLEAN_PROPERTY_SCROLLABLE, scrollable);
3865 builder.append("; scrollable: ").append(isScrollable());
/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/widget/
H A DScrollView.java905 final boolean scrollable = getScrollRange() > 0;
906 event.setScrollable(scrollable);
/frameworks/support/compat/src/main/java/androidx/core/widget/
H A DNestedScrollView.java2087 final boolean scrollable = nsvHost.getScrollRange() > 0;
2088 event.setScrollable(scrollable);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java119 * A layout which handles a dynamic amount of notifications and presents them in a scrollable stack.
2232 boolean scrollable = !mQsExpanded && getScrollRange() > 0;
2233 if (scrollable != mScrollable) {
2234 mScrollable = scrollable;
2235 setFocusable(scrollable);

Completed in 169 milliseconds