Searched defs: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/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.java988 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { method in class:AutoCompleteTextView
989 super.onFocusChanged(focused, direction, previouslyFocusedRect);
H A DGallery.java1348 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { method in class:Gallery
1349 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DGridView.java1834 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { method in class:GridView
1835 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DListView.java3362 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { method in class:ListView
3363 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DSearchView.java1710 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { method in class:SearchView.SearchAutoComplete
1711 super.onFocusChanged(focused, direction, previouslyFocusedRect);
H A DEditor.java824 void onFocusChanged(boolean focused, int direction) { method in class:Editor
H A DAbsListView.java1911 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { method in class:AbsListView
1912 super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
H A DTextView.java4426 // - onFocusChanged cannot start it when focus is given to a view with selected text (after
7289 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { method in class:TextView
7292 super.onFocusChanged(focused, direction, previouslyFocusedRect);
7296 if (mEditor != null) mEditor.onFocusChanged(focused, direction);
7308 mTransformation.onFocusChanged(this, mText, focused, direction, previouslyFocusedRect);
7311 super.onFocusChanged(focused, direction, previouslyFocusedRect);
/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/webkit/
H A DWebViewProvider.java316 public void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect); method in interface:WebViewProvider.ViewDelegate
H A DWebView.java2005 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { method in class:WebView
2006 mProvider.getViewDelegate().onFocusChanged(focused, direction, previouslyFocusedRect);
2007 super.onFocusChanged(focused, direction, previouslyFocusedRect);
H A DWebViewClassic.java5415 public void onFocusChanged(boolean focused, int direction, method in class:WebViewClassic
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java366 public void onFocusChanged(boolean hasFocus, int direction, Rect previous) { method in class:RecipientEditTextView
367 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.java228 * <td><code>{@link #onFocusChanged(boolean, int, android.graphics.Rect)}</code></td>
4232 * {@link #onFocusChanged(boolean, int, android.graphics.Rect)} to be called.
4257 onFocusChanged(true, direction, previouslyFocusedRect);
4321 * {@link #onFocusChanged(boolean, int, android.graphics.Rect)} is called.
4342 onFocusChanged(false, 0, null);
4373 onFocusChanged(false, 0, null);
4427 protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) { method in class:View
5079 * @see #onFocusChanged(boolean, int, android.graphics.Rect)

Completed in 514 milliseconds