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

/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java2630 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) { method in class:ViewPager
2641 child.addFocusables(views, direction, focusableMode);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DPagedView.java1003 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) { method in class:PagedView
1005 getPageAt(mCurrentPage).addFocusables(views, direction, focusableMode);
1009 getPageAt(mCurrentPage - 1).addFocusables(views, direction, focusableMode);
1013 getPageAt(mCurrentPage + 1).addFocusables(views, direction, focusableMode);
/frameworks/base/core/java/android/view/
H A DViewGroup.java1053 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) { method in class:ViewGroup
1069 child.addFocusables(views, direction, focusableMode);
1082 super.addFocusables(views, direction, focusableMode);
H A DView.java1078 * View flag indicating whether {@link #addFocusables(ArrayList, int, int)}
1084 * View flag indicating whether {@link #addFocusables(ArrayList, int, int)}
5437 getRootView().addFocusables(focusablesTempList, View.FOCUS_FORWARD, FOCUSABLES_ALL);
7346 addFocusables(result, direction);
7358 public void addFocusables(ArrayList<View> views, @FocusDirection int direction) { method in class:View
7359 addFocusables(views, direction, FOCUSABLES_TOUCH_MODE);
7378 public void addFocusables(ArrayList<View> views, @FocusDirection int direction, method in class:View
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1331 public void addFocusables(ArrayList<View> views, int direction, int focusableMode) { method in class:RecyclerView
1333 super.addFocusables(views, direction, focusableMode);
5831 * behavior of {@link ViewGroup#addFocusables(java.util.ArrayList, int)} should be

Completed in 1492 milliseconds