Searched defs:selectable (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/preference/
H A DPreference.java740 * Sets whether this Preference is selectable.
742 * @param selectable Set true to make it selectable.
744 public void setSelectable(boolean selectable) { argument
745 if (mSelectable != selectable) {
746 mSelectable = selectable;
752 * Checks whether this Preference should be selectable in the list.
754 * @return True if it is selectable, false otherwise.
/frameworks/base/core/java/android/widget/
H A DTextView.java4613 * contact's address), it should be made selectable, so that the user can select and copy this
4618 * selectable (text is not selectable by default).
4633 * Sets whether or not (default) the content of this view is selectable by the user.
4642 * @param selectable Whether or not the content of this TextView should be selectable.
4644 public void setTextIsSelectable(boolean selectable) { argument
4645 if (!selectable && mEditor == null) return; // false is default value with no edit data
4648 if (mEditor.mTextIsSelectable == selectable) return;
4650 mEditor.mTextIsSelectable = selectable;
[all...]

Completed in 54 milliseconds