Searched refs:onFocusChanged (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/core/java/android/text/method/
H A DTransformationMethod.java42 public void onFocusChanged(View view, CharSequence sourceText, method in interface:TransformationMethod
H A DAllCapsTransformationMethod.java50 public void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, method in class:AllCapsTransformationMethod
H A DReplacementTransformationMethod.java102 public void onFocusChanged(View view, CharSequence sourceText, method in class:ReplacementTransformationMethod
H A DPasswordTransformationMethod.java120 public void onFocusChanged(View view, CharSequence sourceText, method in class:PasswordTransformationMethod
/frameworks/base/core/tests/coretests/src/android/util/
H A DInternalSelectionView.java49 * 3) overrides {@link View#onFocusChanged} and sets selection appropriately according to
241 protected void onFocusChanged(boolean focused, int direction, method in class:InternalSelectionView
243 super.onFocusChanged(focused, direction, previouslyFocusedRect);
/frameworks/base/core/java/android/widget/
H A DDialerFilter.java93 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { method in class:DialerFilter
94 super.onFocusChanged(focused, direction, previouslyFocusedRect);
H A DAutoCompleteTextView.java1003 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { method in class:AutoCompleteTextView
1004 super.onFocusChanged(focused, direction, previouslyFocusedRect);
H A DGallery.java1364 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { method in class:Gallery
1365 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DSearchView.java1724 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { method in class:SearchView.SearchAutoComplete
1725 super.onFocusChanged(focused, direction, previouslyFocusedRect);
H A DGridView.java1844 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { method in class:GridView
1845 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DListView.java3424 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { method in class:ListView
3425 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DTextView.java4446 // - onFocusChanged cannot start it when focus is given to a view with selected text (after
7303 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { method in class:TextView
7306 super.onFocusChanged(focused, direction, previouslyFocusedRect);
7310 if (mEditor != null) mEditor.onFocusChanged(focused, direction);
7322 mTransformation.onFocusChanged(this, mText, focused, direction, previouslyFocusedRect);
7325 super.onFocusChanged(focused, direction, previouslyFocusedRect);
H A DAbsListView.java1802 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { method in class:AbsListView
1803 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DEditor.java820 void onFocusChanged(boolean focused, int direction) { method in class:Editor
977 // Don't leave us in the middle of a batch edit. Same as in onFocusChanged
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java317 public void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect); method in interface:WebViewProvider.ViewDelegate
H A DWebView.java2085 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { method in class:WebView
2086 mProvider.getViewDelegate().onFocusChanged(focused, direction, previouslyFocusedRect);
2087 super.onFocusChanged(focused, direction, previouslyFocusedRect);
H A DWebViewClassic.java5505 public void onFocusChanged(boolean focused, int direction, method in class:WebViewClassic
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java383 public void onFocusChanged(boolean hasFocus, int direction, Rect previous) { method in class:RecipientEditTextView
384 super.onFocusChanged(hasFocus, direction, previous);
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java376 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { method in class:EditStyledText
377 super.onFocusChanged(focused, direction, previouslyFocusedRect);
/frameworks/base/core/java/android/view/
H A DView.java236 * <td><code>{@link #onFocusChanged(boolean, int, android.graphics.Rect)}</code></td>
4350 * {@link #onFocusChanged(boolean, int, android.graphics.Rect)} to be called.
4375 onFocusChanged(true, direction, previouslyFocusedRect);
4456 * {@link #onFocusChanged(boolean, int, android.graphics.Rect)} is called.
4477 onFocusChanged(false, 0, null);
4508 onFocusChanged(false, 0, null);
4562 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { method in class:View
5282 * @see #onFocusChanged(boolean, int, android.graphics.Rect)

Completed in 2243 milliseconds