Lines Matching refs:enabled

369      * the drawing cache was enabled on the children
580 * The select child's view (from the adapter's getView) is enabled.
585 * The cached drawable state for the selector. Accounts for child enabled
1241 * Specifies whether fast scrolling is enabled or disabled.
1243 * When fast scrolling is enabled, the user can quickly scroll through lists
1253 * @param enabled true to enable fast scrolling, false otherwise
1255 public void setFastScrollEnabled(final boolean enabled) {
1256 if (mFastScrollEnabled != enabled) {
1257 mFastScrollEnabled = enabled;
1260 setFastScrollerEnabledUiThread(enabled);
1265 setFastScrollerEnabledUiThread(enabled);
1272 private void setFastScrollerEnabledUiThread(boolean enabled) {
1274 mFastScroll.setEnabled(enabled);
1275 } else if (enabled) {
1304 * already enabled.
1372 * Returns true if the fast scroller is enabled.
1375 * @return true if fast scroll is enabled, false otherwise
1403 * If fast scroll is enabled, then don't draw the vertical scrollbar.
1412 * When smooth scrollbar is enabled, the position and size of the scrollbar thumb
1424 * @param enabled Whether or not to enable smooth scrollbar.
1429 public void setSmoothScrollbarEnabled(boolean enabled) {
1430 mSmoothScrollbarEnabled = enabled;
1436 * @return True if smooth scrollbar is enabled is enabled, false otherwise.
1564 * By default, the drawing cache is enabled but this will consume more memory.
1566 * @return true if the scrolling cache is enabled, false otherwise
1578 * By default, the drawing cache is enabled but this will use more memory.
1580 * When the scrolling cache is enabled, the caches are kept after the
1584 * @param enabled true to enable the scroll cache, false otherwise
1589 public void setScrollingCacheEnabled(boolean enabled) {
1590 if (mScrollingCacheEnabled && !enabled) {
1593 mScrollingCacheEnabled = enabled;
1597 * Enables or disables the type filter window. If enabled, typing when
1611 * Indicates whether type filtering is enabled for this view
1613 * @return true if type filtering is enabled, false otherwise
1948 * @return the list's text filter or null if filtering isn't enabled
2568 // Update the child enabled state prior to updating the selector.
2812 // If the child view is enabled then do the default behavior.
2819 // is disabled, so we need to remove the enabled state from the drawable
2824 // state arrays, and clearing the enabled state on those arrays is a
2837 // Remove the enabled state
5704 public boolean reportFullscreenMode(boolean enabled) {
5707 return mDefInputConnection.reportFullscreenMode(enabled);
6342 /** Whether the adapter considers the item enabled. */