Searched defs:hasWindowFocus (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/core/java/android/inputmethodservice/
H A DExtractButton.java47 @Override public boolean hasWindowFocus() { method in class:ExtractButton
H A DExtractEditText.java134 @Override public boolean hasWindowFocus() { method in class:ExtractEditText
/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuView.java575 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
577 if (!hasWindowFocus) {
581 super.onWindowFocusChanged(hasWindowFocus);
/frameworks/base/core/java/android/widget/
H A DAutoCompleteTextView.java973 if (hasFocus() && hasWindowFocus() && mPopupCanBeUpdated) {
986 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
987 super.onWindowFocusChanged(hasWindowFocus);
988 if (!hasWindowFocus && !mPopup.isDropDownAlwaysVisible()) {
H A DListPopupWindow.java1727 public boolean hasWindowFocus() { method in class:ListPopupWindow.DropDownListView
1728 return mHijackFocus || super.hasWindowFocus();
H A DSearchView.java1296 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1297 super.onWindowFocusChanged(hasWindowFocus);
1767 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1768 super.onWindowFocusChanged(hasWindowFocus);
1770 if (hasWindowFocus && mSearchView.hasFocus() && getVisibility() == VISIBLE) {
H A DAbsListView.java2924 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
2925 super.onWindowFocusChanged(hasWindowFocus);
2929 if (!hasWindowFocus) {
H A DEditor.java1041 void onWindowFocusChanged(boolean hasWindowFocus) { argument
1042 if (hasWindowFocus) {
H A DTextView.java7917 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
7918 super.onWindowFocusChanged(hasWindowFocus);
7920 if (mEditor != null) mEditor.onWindowFocusChanged(hasWindowFocus);
7922 startStopMarquee(hasWindowFocus);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardHostView.java896 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
897 super.onWindowFocusChanged(hasWindowFocus);
898 if (DEBUG) Log.d(TAG, "Window is " + (hasWindowFocus ? "focused" : "unfocused"));
899 if (hasWindowFocus && mShowSecurityWhenReturn) {
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java334 public void onWindowFocusChanged(boolean hasWindowFocus); argument
H A DWebView.java2421 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
2422 mProvider.getViewDelegate().onWindowFocusChanged(hasWindowFocus);
2423 super.onWindowFocusChanged(hasWindowFocus);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java1675 public boolean hasWindowFocus() { method in class:ListPopupWindow.DropDownListView
1676 return mHijackFocus || super.hasWindowFocus();
H A DSearchView.java1211 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1212 super.onWindowFocusChanged(hasWindowFocus);
1667 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1668 super.onWindowFocusChanged(hasWindowFocus);
1670 if (hasWindowFocus && mSearchView.hasFocus() && getVisibility() == VISIBLE) {
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java1839 public void onWindowFocusChanged(final boolean hasWindowFocus) { argument
1844 onWindowFocusChanged(hasWindowFocus);
1849 mAwContents.onWindowFocusChanged(hasWindowFocus);
/frameworks/base/core/java/android/app/
H A DActivity.java2627 * @see #hasWindowFocus()
2662 public boolean hasWindowFocus() { method in class:Activity
2667 return d.hasWindowFocus();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationStackScrollLayout.java2000 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
2001 super.onWindowFocusChanged(hasWindowFocus);
2002 if (!hasWindowFocus) {
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java3163 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
3164 super.onWindowFocusChanged(hasWindowFocus);
3168 if (hasFeature(FEATURE_OPTIONS_PANEL) && !hasWindowFocus && mPanelChordingKey != 0) {
3174 cb.onWindowFocusChanged(hasWindowFocus);
/frameworks/base/core/java/android/view/
H A DView.java8690 * @param hasWindowFocus True if the window containing this view now has
8693 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
8695 if (!hasWindowFocus) {
8717 public boolean hasWindowFocus() { method in class:View
16090 if (hasWindowFocus()) viewStateIndex |= VIEW_STATE_WINDOW_FOCUSED;
16115 + " wf=" + hasWindowFocus()

Completed in 3374 milliseconds