Searched refs:selectable (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreference.java78 * @attr name android:selectable
537 final boolean selectable = isSelectable();
538 holder.itemView.setFocusable(selectable);
539 holder.itemView.setClickable(selectable);
541 holder.setDividerAllowedAbove(selectable);
542 holder.setDividerAllowedBelow(selectable);
733 * Sets whether this Preference is selectable.
735 * @param selectable Set true to make it selectable.
737 public void setSelectable(boolean selectable) { argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
H A DTileAdapter.java269 final boolean selectable = !mAccessibilityMoving || position < mEditIndex;
270 holder.mTileView.setClickable(selectable);
271 holder.mTileView.setFocusable(selectable);
272 holder.mTileView.setImportantForAccessibility(selectable
275 if (selectable) {
/frameworks/base/core/java/android/preference/
H A DPreference.java784 * Sets whether this Preference is selectable.
786 * @param selectable Set true to make it selectable.
788 public void setSelectable(boolean selectable) { argument
789 if (mSelectable != selectable) {
790 mSelectable = selectable;
796 * Checks whether this Preference should be selectable in the list.
798 * @return True if it is selectable, false otherwise.
/frameworks/base/core/java/android/widget/
H A DTextView.java5584 * Sets whether the content of this view is selectable by the user. The default is
5585 * {@code false}, meaning that the content is not selectable.
5588 * contact's address), make it selectable, so that the user can select and copy its
5605 * @param selectable Whether the content of this TextView should be selectable.
5607 public void setTextIsSelectable(boolean selectable) { argument
5608 if (!selectable && mEditor == null) return; // false is default value with no edit data
5611 if (mEditor.mTextIsSelectable == selectable) return;
5613 mEditor.mTextIsSelectable = selectable;
5614 setFocusableInTouchMode(selectable);
[all...]

Completed in 80 milliseconds