Searched refs:hasWindowFocus (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/core/java/android/inputmethodservice/
H A DExtractButton.java43 @Override public boolean hasWindowFocus() { method in class:ExtractButton
H A DExtractEditText.java130 @Override public boolean hasWindowFocus() { method in class:ExtractEditText
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DCheckLongPressHelper.java33 if ((mView.getParent() != null) && mView.hasWindowFocus()
H A DKeyguardPatternView.java234 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
235 super.onWindowFocusChanged(hasWindowFocus);
236 if (hasWindowFocus) {
H A DKeyguardAbsKeyInputView.java73 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
74 if (hasWindowFocus) {
H A DKeyguardHostView.java1302 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1303 super.onWindowFocusChanged(hasWindowFocus);
1304 if (DEBUG) Log.d(TAG, "Window is " + (hasWindowFocus ? "focused" : "unfocused"));
1305 if (hasWindowFocus && mShowSecurityWhenReturn) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNotificationRowLayout.java115 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
116 super.onWindowFocusChanged(hasWindowFocus);
117 if (!hasWindowFocus) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DPatternUnlockScreen.java312 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
313 super.onWindowFocusChanged(hasWindowFocus);
314 if (hasWindowFocus) {
H A DLockPatternKeyguardView.java600 public void onWindowFocusChanged (boolean hasWindowFocus) { argument
601 if (DEBUG) Log.d(TAG, hasWindowFocus ? "focused" : "unfocused");
606 if (mScreenOn && !mWindowFocused) startBiometricUnlock = hasWindowFocus;
607 mWindowFocused = hasWindowFocus;
609 if (!hasWindowFocus) {
/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.java970 if (hasFocus() && hasWindowFocus() && mPopupCanBeUpdated) {
983 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
984 super.onWindowFocusChanged(hasWindowFocus);
985 if (!hasWindowFocus && !mPopup.isDropDownAlwaysVisible()) {
H A DSearchView.java1239 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1240 super.onWindowFocusChanged(hasWindowFocus);
1708 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1709 super.onWindowFocusChanged(hasWindowFocus);
1711 if (hasWindowFocus && mSearchView.hasFocus() && getVisibility() == VISIBLE) {
H A DListPopupWindow.java1217 public boolean hasWindowFocus() { method in class:ListPopupWindow.DropDownListView
1218 return mHijackFocus || super.hasWindowFocus();
H A DAbsListView.java2646 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
2647 super.onWindowFocusChanged(hasWindowFocus);
2651 if (!hasWindowFocus) {
2728 return hasWindowFocus() && getWindowAttachCount() == mOriginalAttachCount;
H A DTextView.java7329 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
7330 super.onWindowFocusChanged(hasWindowFocus);
7332 if (mEditor != null) mEditor.onWindowFocusChanged(hasWindowFocus);
7334 startStopMarquee(hasWindowFocus);
H A DEditor.java958 void onWindowFocusChanged(boolean hasWindowFocus) { argument
959 if (hasWindowFocus) {
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java315 public void onWindowFocusChanged(boolean hasWindowFocus); argument
H A DWebView.java2079 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
2080 mProvider.getViewDelegate().onWindowFocusChanged(hasWindowFocus);
2081 super.onWindowFocusChanged(hasWindowFocus);
H A DWebViewClassic.java5402 if (mWebView.hasWindowFocus()) setActive(true);
5415 if (mWebView.hasWindowFocus()) setActive(false);
5469 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
5470 setActive(hasWindowFocus);
5471 if (hasWindowFocus) {
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java432 if (mServedView != null && mServedView.hasWindowFocus()) {
1234 + " winFocus=" + view.hasWindowFocus());
1241 if (false && view.hasWindowFocus()) {
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java2885 boolean hasWindowFocus = msg.arg1 != 0;
2886 mAttachInfo.mHasWindowFocus = hasWindowFocus;
2888 profileRendering(hasWindowFocus);
2890 if (hasWindowFocus) {
2923 if (hasWindowFocus && imm != null && mLastWasImTarget) {
2927 mView.dispatchWindowFocusChanged(hasWindowFocus);
2932 if (hasWindowFocus) {
2951 if (hasWindowFocus) {
H A DView.java7443 * @param hasWindowFocus True if the window containing this view now has
7446 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
7448 if (!hasWindowFocus) {
7470 public boolean hasWindowFocus() { method in class:View
14353 if (hasWindowFocus()) viewStateIndex |= VIEW_STATE_WINDOW_FOCUSED;
14378 + " wf=" + hasWindowFocus()
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java2440 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
2441 super.onWindowFocusChanged(hasWindowFocus);
2445 if (!hasWindowFocus && mPanelChordingKey != 0) {
2451 cb.onWindowFocusChanged(hasWindowFocus);
/frameworks/base/core/java/android/app/
H A DActivity.java2312 * @see #hasWindowFocus()
2347 public boolean hasWindowFocus() { method in class:Activity
2352 return d.hasWindowFocus();

Completed in 1472 milliseconds