HomeSort by relevance Sort by last modified time
    Searched defs:focusable (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPopupWindow.java 22 private boolean focusable; field in class:ShadowPopupWindow
38 public void __constructor__(View contentView, int width, int height, boolean focusable) {
42 this.focusable = focusable;
77 public void setFocusable(boolean focusable) {
78 this.focusable = focusable;
83 return focusable;
ShadowView.java 67 protected boolean focusable; field in class:ShadowView
130 * Also sets focusable in touch mode to false if {@code focusable} is false, which is the Android behavior.
132 * @param focusable the new status of the {@code View}'s focusability
135 public void setFocusable(boolean focusable) {
136 this.focusable = focusable;
137 if (!focusable) {
148 * Also sets focusable to true if {@code focusableInTouchMode} is true, which is the Android behavior.
167 return focusable;
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
FocusStrategy.java 63 // The position of the next focusable item, which is the first item if
78 // The position of the previous focusable item, which is the last item
169 final T focusable = collectionAdapter.get(focusables, i); local
170 if (focusable == focused) {
175 adapter.obtainBounds(focusable, focusableRect);
178 closest = focusable;
  /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
UiSelector.java 389 * Set the search criteria to match widgets that are focusable.
403 public UiSelector focusable(boolean val) { method in class:UiSelector
    [all...]
  /frameworks/base/core/java/android/view/
FocusFinder.java 29 * The algorithm used for finding the next focusable view in a given direction
65 * @return The next focusable view, or null if none exists.
77 * @return The next focusable view, or null if none exists.
230 View focusable = focusables.get(i); local
233 if (focusable == focused || focusable == root) continue;
236 focusable.getFocusedRect(mOtherRect);
237 root.offsetDescendantRectToMyCoords(focusable, mOtherRect);
241 closest = focusable;
  /packages/apps/TV/src/com/android/tv/guide/
ProgramGrid.java 217 View focusable = focusables.get(i); local
218 if (!(focusable instanceof ProgramItemView)) {
221 if (((ProgramItemView) focusable).getTableEntry().isCurrentProgram()) {
234 // Find the largest focusable among fully overlapped focusables.
237 View focusable = focusables.get(i); local
239 focusable.getGlobalVisibleRect(focusableRect);
261 View focusable = focusables.get(i); local
263 focusable.getGlobalVisibleRect(focusableRect);
284 Log.w(TAG, "focusFind doesn't find proper focusable");
  /packages/services/Car/car-ui-provider/src/android/car/ui/provider/
CarDrawerLayout.java 783 // The 2 else cases here are a catch all for when nothing is focusable in view hierarchy.
784 // If you don't have anything focusable on screen, key events will not be delivered to
1063 View focusable = drawerView.getChildAt(0); local
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GuidedAction.java 121 * editable, or the action is focusable.
513 * @param focusable
516 public B focusable(boolean focusable) { method in class:GuidedAction.BuilderBase
517 setFlags(focusable ? PF_FOCUSABLE : 0, PF_FOCUSABLE);
821 * Returns whether this action is focusable.
822 * @return true if the action is currently focusable, false otherwise.
829 * Sets whether this action is focusable.
830 * @param focusable Whether this action should be focusable
    [all...]
  /prebuilts/sdk/16/
uiautomator.jar 
  /prebuilts/sdk/17/
uiautomator.jar 
  /prebuilts/sdk/18/
uiautomator.jar 
  /prebuilts/sdk/19/
uiautomator.jar 
  /prebuilts/sdk/20/
uiautomator.jar 
  /prebuilts/sdk/21/
uiautomator.jar 
  /prebuilts/sdk/22/
uiautomator.jar 
  /prebuilts/sdk/23/
uiautomator.jar 
  /prebuilts/sdk/24/
uiautomator.jar 
  /prebuilts/sdk/current/
uiautomator.jar 
  /prebuilts/misc/common/ub-uiautomator/
ub-uiautomator.jar 
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/app/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib1/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests1/lib2/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests2/lib1/libs/
android-support-v4.jar 

Completed in 751 milliseconds

1 2 3 4