Searched refs:clickable (Results 1 - 14 of 14) sorted by relevance

/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DViewBindingAdapter.java129 @BindingAdapter({"android:onClickListener", "android:clickable"})
131 boolean clickable) {
133 view.setClickable(clickable);
136 @BindingAdapter({"android:onClick", "android:clickable"})
138 boolean clickable) {
140 view.setClickable(clickable);
145 boolean clickable) {
147 view.setLongClickable(clickable);
152 boolean clickable) {
154 view.setLongClickable(clickable);
130 setClickListener(View view, View.OnClickListener clickListener, boolean clickable) argument
137 setOnClick(View view, View.OnClickListener clickListener, boolean clickable) argument
144 setOnLongClickListener(View view, View.OnLongClickListener clickListener, boolean clickable) argument
151 setOnLongClick(View view, View.OnLongClickListener clickListener, boolean clickable) argument
[all...]
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DListenerTest.java67 mBindingObject.clickable.set(false);
73 mBindingObject.clickable.set(true);
87 mBindingObject.clickable.set(false);
H A DListenerWithDotTest.java70 mBindingObject.clickable.set(false);
76 mBindingObject.clickable.set(true);
90 mBindingObject.clickable.set(false);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DMultiUserSwitch.java148 public void setClickable(boolean clickable) { argument
149 super.setClickable(clickable);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DQSTileBaseView.java167 public void setClickable(boolean clickable) { argument
168 super.setClickable(clickable);
169 setBackground(clickable ? mRipple : null);
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DListenerBindingObject.java52 public final ObservableBoolean clickable = new ObservableBoolean(); field in class:ListenerBindingObject
56 clickable.set(true);
/frameworks/support/design/tests/src/android/support/design/testutils/
H A DTestUtilsActions.java245 public static ViewAction setClickable(final boolean clickable) { argument
254 return "set clickable";
261 view.setClickable(clickable);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSFragment.java209 public void setHeaderClickable(boolean clickable) { argument
210 if (DEBUG) Log.d(TAG, "setHeaderClickable " + clickable);
214 expandView.setClickable(clickable);
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java1952 * Gets whether this node is clickable.
1954 * @return True if the node is clickable.
1961 * Sets whether this node is clickable.
1968 * @param clickable True if the node is clickable.
1971 public void setClickable(boolean clickable) { argument
1972 mInfo.setClickable(clickable);
1976 * Gets whether this node is long clickable.
1978 * @return True if the node is long clickable.
1985 * Sets whether this node is long clickable
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java800 boolean clickable = mOnClickListener != null && normalChild;
804 if (isClickable() != clickable) {
805 setClickable(clickable);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiSelector.java467 * Set the search criteria to match widgets that are clickable.
481 public UiSelector clickable(boolean val) { method in class:UiSelector
505 * Set the search criteria to match widgets that are long-clickable.
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java1879 * Gets whether this node is clickable.
1881 * @return True if the node is clickable.
1888 * Sets whether this node is clickable.
1895 * @param clickable True if the node is clickable.
1899 public void setClickable(boolean clickable) { argument
1900 setBooleanProperty(BOOLEAN_PROPERTY_CLICKABLE, clickable);
1904 * Gets whether this node is long clickable.
1906 * @return True if the node is long clickable.
1913 * Sets whether this node is long clickable
[all...]
/frameworks/base/core/java/android/view/
H A DView.java880 * apps that do this just because more things (clickable things) are now auto-focusable
886 * Prior to O, auto-focusable didn't exist and views marked as clickable weren't implicitly
887 * made focusable by default. As a result, apps could (incorrectly) change the clickable
888 * setting of views off the UI thread. Now that clickable can effect the focusable state,
889 * changing the clickable attribute off the UI thread will cause an exception (since changing
892 * clickable from outside the UI thread.
1407 * <p>Indicates this view can be clicked. When clickable, a View reacts
1477 * Indicates this view can be long clicked. When long clickable, a View
1495 * Indicates this view can be context clicked. When context clickable, a View reacts to a
6137 * clickable, i
9868 setClickable(boolean clickable) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java1634 * Views are not normally clickable unless specified to be.
1636 * clickable by default. By setting clickable here, we implicitly set focusable as well
1642 boolean clickable = canInputOrMove || isClickable();
1661 clickable = a.getBoolean(attr, clickable);
1678 setClickable(clickable);
6615 * the flags {@code focusable}, {@code focusableInTouchMode}, {@code clickable},
6619 * {@link android.R.styleable#View_clickable android:clickable}, and
6662 // Disable pressed state, which was introduced when TextView was made clickable
[all...]

Completed in 564 milliseconds