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

1 2 3 4

  /packages/apps/TV/src/com/android/tv/guide/
GuideUtils.java 74 View focusable = focusables.get(i); local
75 if (focusable instanceof ProgramItemView
76 && isCurrentProgram((ProgramItemView) focusable)) {
77 return focusable;
82 // Find the largest focusable among fully overlapped focusables.
87 View focusable = focusables.get(i); local
89 focusable.getGlobalVisibleRect(focusableRect);
91 // the old focused range is fully inside the focusable, return directly.
92 return focusable;
95 // 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/customview/src/main/java/androidx/customview/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/leanback/src/main/java/androidx/leanback/widget/
GuidedAction.java 122 * editable, or the action is focusable.
517 * @param focusable
520 public B focusable(boolean focusable) { method in class:GuidedAction.BuilderBase
521 setFlags(focusable ? PF_FOCUSABLE : 0, PF_FOCUSABLE);
835 * Returns whether this action is focusable.
836 * @return true if the action is currently focusable, false otherwise.
843 * Sets whether this action is focusable.
844 * @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/28/
uiautomator.jar 
  /prebuilts/sdk/current/
uiautomator.jar 
  /prebuilts/misc/common/ub-uiautomator/
ub-uiautomator.jar 
  /frameworks/base/core/java/android/widget/
TextView.java 1528 int focusable = getFocusable(); local
    [all...]
  /development/samples/training/basic/ActivityLifecycle/libs/
android-support-v13.jar 
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 

Completed in 150 milliseconds

1 2 3 4