Searched defs:focused (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/base/core/java/android/text/method/
H A DTransformationMethod.java43 boolean focused, int direction,
42 onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect) argument
H A DAllCapsTransformationMethod.java50 public void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, argument
H A DReplacementTransformationMethod.java103 boolean focused, int direction,
102 onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect) argument
H A DPasswordTransformationMethod.java121 boolean focused, int direction,
123 if (!focused) {
120 onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect) argument
/frameworks/base/core/java/android/widget/
H A DZoomButton.java97 public boolean dispatchUnhandledMove(View focused, int direction) { argument
99 return super.dispatchUnhandledMove(focused, direction);
H A DDialerFilter.java90 * Only show the icon view when focused, if there is one.
93 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
94 super.onFocusChanged(focused, direction, previouslyFocusedRect);
97 mIcon.setVisibility(focused ? View.VISIBLE : View.GONE);
H A DAutoCompleteTextView.java1003 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
1004 super.onFocusChanged(focused, direction, previouslyFocusedRect);
1006 if (!focused) {
1009 if (!focused && !mPopup.isDropDownAlwaysVisible()) {
H A DHorizontalScrollView.java336 // Let the focused view and/or our descendants get the key first
1015 * to a component visible in this area. If no component can be focused in
1095 // previously focused item still has focus and is off screen, give
1396 public void requestChildFocus(View child, View focused) { argument
1398 scrollToChild(focused);
1401 mChildToScrollTo = focused;
1403 super.requestChildFocus(child, focused);
H A DScrollView.java357 // Let the focused view and/or our descendants get the key first
1000 * to a component visible in this area. If no component can be focused in
1079 // previously focused item still has focus and is off screen, give
1390 public void requestChildFocus(View child, View focused) { argument
1392 scrollToChild(focused);
1395 mChildToScrollTo = focused;
1397 super.requestChildFocus(child, focused);
1506 // If the currently-focused view was visible on the screen when the
H A DSearchView.java473 * Sets a listener to inform when a suggestion is focused or clicked.
817 boolean focused = mQueryTextView.hasFocus();
818 mSearchPlate.getBackground().setState(focused ? FOCUSED_STATE_SET : EMPTY_STATE_SET);
819 mSubmitArea.getBackground().setState(focused ? FOCUSED_STATE_SET : EMPTY_STATE_SET);
1725 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
1726 super.onFocusChanged(focused, direction, previouslyFocusedRect);
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DVerticalFocusSearchTest.java49 View findNextFocus(ViewGroup root, View focused, int direction); argument
55 public View findNextFocus(ViewGroup root, View focused, int direction) { argument
57 .findNextFocus(root, focused, direction);
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatJellyBean.java76 public static void setAccesibilityFocused(Object info, boolean focused) { argument
77 ((AccessibilityNodeInfo) info).setAccessibilityFocused(focused);
/frameworks/base/core/java/android/view/
H A DFocusFinder.java58 * that currently is focused.
59 * @param root Contains focused. Cannot be null.
60 * @param focused Has focus now.
64 public final View findNextFocus(ViewGroup root, View focused, int direction) { argument
65 return findNextFocus(root, focused, null, direction);
81 private View findNextFocus(ViewGroup root, View focused, Rect focusedRect, int direction) { argument
83 if (focused != null) {
84 next = findNextUserSpecifiedFocus(root, focused, direction);
94 next = findNextFocus(root, focused, focusedRect, direction, focusables);
102 private View findNextUserSpecifiedFocus(ViewGroup root, View focused, in argument
113 findNextFocus(ViewGroup root, View focused, Rect focusedRect, int direction, ArrayList<View> focusables) argument
170 findNextFocusInRelativeDirection(ArrayList<View> focusables, ViewGroup root, View focused, Rect focusedRect, int direction) argument
203 findNextFocusInAbsoluteDirection(ArrayList<View> focusables, ViewGroup root, View focused, Rect focusedRect, int direction) argument
243 getNextFocusable(View focused, ArrayList<View> focusables, int count) argument
256 getPreviousFocusable(View focused, ArrayList<View> focusables, int count) argument
[all...]
H A DViewParent.java96 * will contain the focused view. It is not necessarily the view that
98 * @param focused The view that is a descendant of child that actually has
101 public void requestChildFocus(View child, View focused); argument
/frameworks/base/core/tests/coretests/src/android/util/
H A DInternalSelectionView.java50 * the previously focused rectangle.
241 protected void onFocusChanged(boolean focused, int direction, argument
243 super.onFocusChanged(focused, direction, previouslyFocusedRect);
245 if (focused) {
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DMultiPaneChallengeLayout.java167 public void requestChildFocus(View child, View focused) { argument
173 super.requestChildFocus(child, focused);
H A DSlidingChallengeLayout.java338 public void requestChildFocus(View child, View focused) { argument
344 super.requestChildFocus(child, focused);
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java180 public static void setFocused(Object info, boolean focused) { argument
181 ((AccessibilityNodeInfo) info).setFocused(focused);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DActionMenuItemView.java251 public void onFocusChanged(View view, CharSequence sourceText, boolean focused, argument
/frameworks/base/core/java/android/app/
H A DNativeActivity.java106 private native void onWindowFocusChangedNative(int handle, boolean focused); argument
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiSelector.java381 public UiSelector focused(boolean val) { method in class:UiSelector
/frameworks/uiautomator/core/com/android/uiautomator/core/
H A DUiSelector.java381 public UiSelector focused(boolean val) { method in class:UiSelector
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp454 onWindowFocusChanged_native(JNIEnv* env, jobject clazz, jint handle, jboolean focused) argument
460 code->callbacks.onWindowFocusChanged(code, focused ? 1 : 0);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java72 public void setFocused(Object info, boolean focused); argument
76 public void setAccessibilityFocused(Object info, boolean focused); argument
326 public void setFocused(Object info, boolean focused) { argument
336 public void setAccessibilityFocused(Object info, boolean focused) { argument
613 public void setFocused(Object info, boolean focused) { argument
614 AccessibilityNodeInfoCompatIcs.setFocused(info, focused);
705 public void setAccessibilityFocused(Object info, boolean focused) { argument
706 AccessibilityNodeInfoCompatJellyBean.setAccesibilityFocused(info, focused);
1175 * @return The node info of the focused view or null.
1553 * Gets whether this node is focused
1572 setFocused(boolean focused) argument
1622 setAccessibilityFocused(boolean focused) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java331 public void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect); argument

Completed in 718 milliseconds

12