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

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowView.java68 boolean focusableInTouchMode; field in class:ShadowView
142 return focusableInTouchMode;
146 * Also sets focusable to true if {@code focusableInTouchMode} is true, which is the Android behavior.
148 * @param focusableInTouchMode the new status of the {@code View}'s touch mode focusability
151 public void setFocusableInTouchMode(boolean focusableInTouchMode) { argument
152 this.focusableInTouchMode = focusableInTouchMode;
153 if (focusableInTouchMode) {

Completed in 182 milliseconds