Searched defs:hasFocus (Results 1 - 25 of 28) sorted by relevance

12

/frameworks/base/core/java/android/inputmethodservice/
H A DSoftInputWindow.java64 public void onWindowFocusChanged(boolean hasFocus) { argument
65 super.onWindowFocusChanged(hasFocus);
H A DExtractEditText.java146 @Override public boolean hasFocus() { method in class:ExtractEditText
/frameworks/base/core/java/android/widget/
H A DZoomControls.java108 public boolean hasFocus() { method in class:ZoomControls
109 return mZoomIn.hasFocus() || mZoomOut.hasFocus();
H A DTabWidget.java512 public void onFocusChange(View v, boolean hasFocus) { argument
513 if (v == this && hasFocus && getTabCount() > 0) {
518 if (hasFocus) {
H A DTabHost.java208 if (mCurrentView != null && (!mCurrentView.hasFocus() || mCurrentView.isFocused())) {
333 && (mCurrentView.hasFocus())) {
373 public void dispatchWindowFocusChanged(boolean hasFocus) { argument
375 mCurrentView.dispatchWindowFocusChanged(hasFocus);
424 if (!mTabWidget.hasFocus()) {
H A DListPopupWindow.java1626 public boolean hasFocus() { method in class:ListPopupWindow.DropDownListView
1627 return mHijackFocus || super.hasFocus();
/frameworks/base/services/java/com/android/server/wm/
H A DFakeWindowImpl.java44 boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen) {
72 mWindowHandle.hasFocus = hasFocus;
41 FakeWindowImpl(WindowManagerService service, Looper looper, InputEventReceiver.Factory inputEventReceiverFactory, String name, int windowType, int layoutParamsFlags, int layoutParamsPrivateFlags, boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen) argument
H A DInputMonitor.java170 final boolean isVisible, final boolean hasFocus, final boolean hasWallpaper) {
189 inputWindowHandle.hasFocus = hasFocus;
281 final boolean hasFocus = (child == mInputFocus);
306 isVisible, hasFocus, hasWallpaper);
168 addInputWindowHandleLw(final InputWindowHandle inputWindowHandle, final WindowState child, int flags, int privateFlags, final int type, final boolean isVisible, final boolean hasFocus, final boolean hasWallpaper) argument
/frameworks/base/services/java/com/android/server/input/
H A DInputWindowHandle.java73 public boolean hasFocus; field in class:InputWindowHandle
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java64 public void windowFocusChanged(boolean hasFocus, boolean touchEnabled) { argument
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputWindowHandle.cpp49 jfieldID hasFocus; member in struct:android::__anon1196
144 mInfo->hasFocus = env->GetBooleanField(obj,
145 gInputWindowHandleClassInfo.hasFocus);
283 GET_FIELD_ID(gInputWindowHandleClassInfo.hasFocus, clazz,
284 "hasFocus", "Z");
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarActivityDelegateICS.java314 public void onWindowFocusChanged(boolean hasFocus) { argument
315 mWrapped.onWindowFocusChanged(hasFocus);
/frameworks/base/core/java/android/app/
H A DNativeActivity.java257 public void onWindowFocusChanged(boolean hasFocus) { argument
258 super.onWindowFocusChanged(hasFocus);
260 onWindowFocusChangedNative(mNativeHandle, hasFocus);
H A DDialog.java690 public void onWindowFocusChanged(boolean hasFocus) { argument
H A DActivity.java2358 * @param hasFocus Whether the window of this activity has focus.
2364 public void onWindowFocusChanged(boolean hasFocus) { argument
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java279 public void onWindowFocusChanged(boolean hasFocus) { argument
/frameworks/base/core/java/android/view/
H A DSurfaceView.java687 public void windowFocusChanged(boolean hasFocus, boolean touchEnabled) { argument
688 Log.w("SurfaceView", "Unexpected focus in surface: focus=" + hasFocus + ", touchEnabled=" + touchEnabled);
H A DViewTreeObserver.java77 * @param hasFocus Set to true if the window is gaining focus, false if it is
80 public void onWindowFocusChanged(boolean hasFocus); argument
769 final void dispatchOnWindowFocusChange(boolean hasFocus) { argument
778 listener.onWindowFocusChanged(hasFocus);
H A DWindow.java324 * @param hasFocus Whether the window now has focus.
326 public void onWindowFocusChanged(boolean hasFocus); argument
1310 * @param hasFocus Whether this window has focus or not.
1313 public void setLocalFocus(boolean hasFocus, boolean inTouchMode) { } argument
H A DWindowManagerPolicy.java405 boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen);
402 addFakeWindow(Looper looper, InputEventReceiver.Factory inputEventReceiverFactory, String name, int windowType, int layoutParamsFlags, int layoutParamsPrivateFlags, boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen) argument
H A DViewGroup.java843 public boolean hasFocus() { method in class:ViewGroup
967 public void dispatchWindowFocusChanged(boolean hasFocus) { argument
968 super.dispatchWindowFocusChanged(hasFocus);
972 children[i].dispatchWindowFocusChanged(hasFocus);
3593 if (child.hasFocus()) {
4134 if (child.hasFocus()) {
/frameworks/base/services/input/
H A DInputWindow.h131 bool hasFocus; member in struct:android::InputWindowInfo
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DListPopupWindow.java1247 public boolean hasFocus() { method in class:ListPopupWindow.DropDownListView
1248 return mHijackFocus || super.hasFocus();
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java417 public void onFocusChanged(boolean hasFocus, int direction, Rect previous) { argument
418 super.onFocusChanged(hasFocus, direction, previous);
419 if (!hasFocus) {
896 if (hasFocus() || mTemporaryRecipients.size() < CHIP_LIMIT) {
1278 return !mNoChips && hasFocus() && enoughToFilter() && !alreadyHasChip(start, end);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java640 if (!st.shownPanelView.hasFocus()) {
1473 public void setLocalFocus(boolean hasFocus, boolean inTouchMode) { argument
1474 getViewRootImpl().windowFocusChanged(hasFocus, inTouchMode);

Completed in 3691 milliseconds

12