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

1 2 3 4

  /packages/apps/TV/src/com/android/tv/guide/
GuideUtils.java 77 View focusable = focusables.get(i); local
78 if (focusable instanceof ProgramItemView
79 && isCurrentProgram((ProgramItemView) focusable)) {
80 return focusable;
85 // Find the largest focusable among fully overlapped focusables.
90 View focusable = focusables.get(i); local
92 focusable.getGlobalVisibleRect(focusableRect);
94 // the old focused range is fully inside the focusable, return directly.
95 return focusable;
98 // the focusable is fully inside the old focused range, choose the widest one
    [all...]
  /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/core-ui/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
170 final T focusable = collectionAdapter.get(focusables, i); local
171 if (focusable == focused) {
176 adapter.obtainBounds(focusable, focusableRect);
179 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 35 * The algorithm used for finding the next focusable view in a given direction
77 * @return The next focusable view, or null if none exists.
89 * @return The next focusable view, or null if none exists.
210 // are currently focusable.
358 View focusable = focusables.get(i); local
361 if (focusable == focused || focusable == root) continue;
364 focusable.getFocusedRect(mOtherRect);
365 root.offsetDescendantRectToMyCoords(focusable, mOtherRect);
369 closest = focusable;
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GuidedAction.java 120 * editable, or the action is focusable.
514 * @param focusable
517 public B focusable(boolean focusable) { method in class:GuidedAction.BuilderBase
518 setFlags(focusable ? PF_FOCUSABLE : 0, PF_FOCUSABLE);
822 * Returns whether this action is focusable.
823 * @return true if the action is currently focusable, false otherwise.
830 * Sets whether this action is focusable.
831 * @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/25/
uiautomator.jar 
  /prebuilts/sdk/26/
uiautomator.jar 
  /prebuilts/sdk/27/
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 

Completed in 334 milliseconds

1 2 3 4