Searched defs:hasFocus (Results 1 - 25 of 26) 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/webkit/
H A DZoomControlExternal.java82 if (!mZoomControls.hasFocus()) {
147 public boolean hasFocus() { method in class:ZoomControlExternal.ExtendedZoomControls
148 return mPlusMinusZoomControls.hasFocus();
/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.java1237 public boolean hasFocus() { method in class:ListPopupWindow.DropDownListView
1238 return mHijackFocus || super.hasFocus();
/frameworks/base/services/java/com/android/server/wm/
H A DFakeWindowImpl.java44 boolean hasFocus, boolean touchFullscreen) {
71 mWindowHandle.hasFocus = hasFocus;
41 FakeWindowImpl(WindowManagerService service, Looper looper, InputEventReceiver.Factory inputEventReceiverFactory, String name, int windowType, int layoutParamsFlags, boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen) argument
H A DInputMonitor.java167 final boolean isVisible, final boolean hasFocus, final boolean hasWallpaper) {
175 inputWindowHandle.hasFocus = hasFocus;
266 final boolean hasFocus = (child == mInputFocus);
290 isVisible, hasFocus, hasWallpaper);
165 addInputWindowHandleLw(final InputWindowHandle inputWindowHandle, final WindowState child, final int flags, final int type, final boolean isVisible, final boolean hasFocus, final boolean hasWallpaper) argument
H A DWindowManagerService.java10350 boolean hasFocus, boolean touchFullscreen) {
10354 layoutParamsFlags, canReceiveKeys, hasFocus, touchFullscreen);
10347 addFakeWindow(Looper looper, InputEventReceiver.Factory inputEventReceiverFactory, String name, int windowType, int layoutParamsFlags, boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen) argument
/frameworks/base/services/java/com/android/server/input/
H A DInputWindowHandle.java72 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.cpp48 jfieldID hasFocus; member in struct:android::__anon1141
141 mInfo->hasFocus = env->GetBooleanField(obj,
142 gInputWindowHandleClassInfo.hasFocus);
277 GET_FIELD_ID(gInputWindowHandleClassInfo.hasFocus, clazz,
278 "hasFocus", "Z");
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DSimPukUnlockScreen.java206 public void onFocusChange(View v, boolean hasFocus) { argument
207 if (hasFocus)
/frameworks/base/core/java/android/app/
H A DNativeActivity.java263 public void onWindowFocusChanged(boolean hasFocus) { argument
264 super.onWindowFocusChanged(hasFocus);
266 onWindowFocusChangedNative(mNativeHandle, hasFocus);
H A DDialog.java684 public void onWindowFocusChanged(boolean hasFocus) { argument
H A DActivity.java2310 * @param hasFocus Whether the window of this activity has focus.
2316 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.java681 public void windowFocusChanged(boolean hasFocus, boolean touchEnabled) { argument
682 Log.w("SurfaceView", "Unexpected focus in surface: focus=" + hasFocus + ", touchEnabled=" + touchEnabled);
H A DWindow.java324 * @param hasFocus Whether the window now has focus.
326 public void onWindowFocusChanged(boolean hasFocus); argument
H A DWindowManagerPolicy.java382 boolean hasFocus, boolean touchFullscreen);
379 addFakeWindow(Looper looper, InputEventReceiver.Factory inputEventReceiverFactory, String name, int windowType, int layoutParamsFlags, boolean canReceiveKeys, boolean hasFocus, boolean touchFullscreen) argument
H A DViewGroup.java806 public boolean hasFocus() { method in class:ViewGroup
929 public void dispatchWindowFocusChanged(boolean hasFocus) { argument
930 super.dispatchWindowFocusChanged(hasFocus);
934 children[i].dispatchWindowFocusChanged(hasFocus);
3370 if (child.hasFocus()) {
3889 if (child.hasFocus()) {
H A DViewRootImpl.java1793 if (DEBUG_INPUT_RESIZE) Log.v(TAG, "First: mView.hasFocus()="
1794 + mView.hasFocus());
1796 if (!mView.hasFocus()) {
2590 if (!mView.hasFocus()) {
3081 if (mView.hasFocus()) {
3133 if (mView.hasFocus()) {
4571 public void windowFocusChanged(boolean hasFocus, boolean inTouchMode) { argument
4574 msg.arg1 = hasFocus ? 1 : 0;
4877 public void windowFocusChanged(boolean hasFocus, boolean inTouchMode) { argument
4880 viewAncestor.windowFocusChanged(hasFocus, inTouchMod
[all...]
/frameworks/base/services/input/
H A DInputWindow.h130 bool hasFocus; member in struct:android::InputWindowInfo
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java400 public void onFocusChanged(boolean hasFocus, int direction, Rect previous) { argument
401 super.onFocusChanged(hasFocus, direction, previous);
402 if (!hasFocus) {
875 if (hasFocus() || mTemporaryRecipients.size() < CHIP_LIMIT) {
1276 return !mNoChips && hasFocus() && enoughToFilter() && !alreadyHasChip(start, end);

Completed in 2950 milliseconds

12