Searched defs:hasWindowFocus (Results 1 - 21 of 21) 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/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardAbsKeyInputView.java72 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
73 if (hasWindowFocus) {
H A DKeyguardPatternView.java233 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
234 super.onWindowFocusChanged(hasWindowFocus);
235 if (hasWindowFocus) {
H A DKeyguardHostView.java1460 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1461 super.onWindowFocusChanged(hasWindowFocus);
1462 if (DEBUG) Log.d(TAG, "Window is " + (hasWindowFocus ? "focused" : "unfocused"));
1463 if (hasWindowFocus && mShowSecurityWhenReturn) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DNotificationRowLayout.java110 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
111 super.onWindowFocusChanged(hasWindowFocus);
112 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 DListPopupWindow.java1606 public boolean hasWindowFocus() { method in class:ListPopupWindow.DropDownListView
1607 return mHijackFocus || super.hasWindowFocus();
H A DSearchView.java1239 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1240 super.onWindowFocusChanged(hasWindowFocus);
1709 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1710 super.onWindowFocusChanged(hasWindowFocus);
1712 if (hasWindowFocus && mSearchView.hasFocus() && getVisibility() == VISIBLE) {
H A DAbsListView.java2775 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
2776 super.onWindowFocusChanged(hasWindowFocus);
2780 if (!hasWindowFocus) {
H A DEditor.java1010 void onWindowFocusChanged(boolean hasWindowFocus) { argument
1011 if (hasWindowFocus) {
H A DTextView.java7645 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
7646 super.onWindowFocusChanged(hasWindowFocus);
7648 if (mEditor != null) mEditor.onWindowFocusChanged(hasWindowFocus);
7650 startStopMarquee(hasWindowFocus);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DListPopupWindow.java1227 public boolean hasWindowFocus() { method in class:ListPopupWindow.DropDownListView
1228 return mHijackFocus || super.hasWindowFocus();
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java329 public void onWindowFocusChanged(boolean hasWindowFocus); argument
H A DWebView.java2280 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
2281 mProvider.getViewDelegate().onWindowFocusChanged(hasWindowFocus);
2282 super.onWindowFocusChanged(hasWindowFocus);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java1204 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1205 super.onWindowFocusChanged(hasWindowFocus);
1649 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
1650 super.onWindowFocusChanged(hasWindowFocus);
1652 if (hasWindowFocus && mSearchView.hasFocus() && getVisibility() == VISIBLE) {
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java1755 public void onWindowFocusChanged(final boolean hasWindowFocus) { argument
1760 onWindowFocusChanged(hasWindowFocus);
1765 mAwContents.onWindowFocusChanged(hasWindowFocus);
/frameworks/base/core/java/android/app/
H A DActivity.java2360 * @see #hasWindowFocus()
2395 public boolean hasWindowFocus() { method in class:Activity
2400 return d.hasWindowFocus();
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java2636 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
2637 super.onWindowFocusChanged(hasWindowFocus);
2641 if (!hasWindowFocus && mPanelChordingKey != 0) {
2647 cb.onWindowFocusChanged(hasWindowFocus);
/frameworks/base/core/java/android/view/
H A DView.java7910 * @param hasWindowFocus True if the window containing this view now has
7913 public void onWindowFocusChanged(boolean hasWindowFocus) { argument
7915 if (!hasWindowFocus) {
7937 public boolean hasWindowFocus() { method in class:View
15192 if (hasWindowFocus()) viewStateIndex |= VIEW_STATE_WINDOW_FOCUSED;
15217 + " wf=" + hasWindowFocus()

Completed in 750 milliseconds