HomeSort by relevance Sort by last modified time
    Searched defs:focusable (Results 1 - 25 of 94) 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/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...]
  /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/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.
348 View focusable = focusables.get(i); local
351 if (focusable == focused || focusable == root) continue;
354 focusable.getFocusedRect(mOtherRect);
355 root.offsetDescendantRectToMyCoords(focusable, mOtherRect);
359 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/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 249 milliseconds

1 2 3 4