Java Code Examples for android.view.View#onCheckIsTextEditor()
The following examples show how to use
android.view.View#onCheckIsTextEditor() .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: TelePlus-Android File: AlertDialog.java License: GNU General Public License v2.0 | 6 votes |
private boolean canTextInput(View v) { if (v.onCheckIsTextEditor()) { return true; } if (!(v instanceof ViewGroup)) { return false; } ViewGroup vg = (ViewGroup) v; int i = vg.getChildCount(); while (i > 0) { i--; v = vg.getChildAt(i); if (canTextInput(v)) { return true; } } return false; }
Example 2
Source Project: dynamic-support File: DynamicAlertController.java License: Apache License 2.0 | 6 votes |
static boolean canTextInput(View v) { if (v.onCheckIsTextEditor()) { return true; } if (!(v instanceof ViewGroup)) { return false; } ViewGroup vg = (ViewGroup) v; int i = vg.getChildCount(); while (i > 0) { i--; v = vg.getChildAt(i); if (canTextInput(v)) { return true; } } return false; }
Example 3
Source Project: FoodOrdering File: RewriteAlertController.java License: Apache License 2.0 | 6 votes |
private boolean canTextInput(View view) { if (view.onCheckIsTextEditor()) { return true; } if (!(view instanceof ViewGroup)) { return false; } ViewGroup VG = (ViewGroup) view; int count = VG.getChildCount(); while (count > 0) { count--; view = VG.getChildAt(count); if (canTextInput(view)) { return true; } } return false; }
Example 4
Source Project: TelePlus-Android File: AlertDialog.java License: GNU General Public License v2.0 | 6 votes |
private boolean canTextInput(View v) { if (v.onCheckIsTextEditor()) { return true; } if (!(v instanceof ViewGroup)) { return false; } ViewGroup vg = (ViewGroup) v; int i = vg.getChildCount(); while (i > 0) { i--; v = vg.getChildAt(i); if (canTextInput(v)) { return true; } } return false; }
Example 5
Source Project: LLApp File: AlertDialog.java License: Apache License 2.0 | 6 votes |
static boolean canTextInput(View v) { if(v.onCheckIsTextEditor()) { return true; } else if(!(v instanceof ViewGroup)) { return false; } else { ViewGroup vg = (ViewGroup)v; int i = vg.getChildCount(); do { if(i <= 0) { return false; } --i; v = vg.getChildAt(i); } while(!canTextInput(v)); return true; } }
Example 6
Source Project: ticdesign File: AlertController.java License: Apache License 2.0 | 6 votes |
static boolean canTextInput(View v) { if (v.onCheckIsTextEditor()) { return true; } if (!(v instanceof ViewGroup)) { return false; } ViewGroup vg = (ViewGroup)v; int i = vg.getChildCount(); while (i > 0) { i--; v = vg.getChildAt(i); if (canTextInput(v)) { return true; } } return false; }
Example 7
Source Project: NewXmPluginSDK File: MLAlertController.java License: Apache License 2.0 | 6 votes |
static boolean canTextInput(View v) { if (v.onCheckIsTextEditor()) { return true; } if (!(v instanceof ViewGroup)) { return false; } ViewGroup vg = (ViewGroup) v; int i = vg.getChildCount(); while (i > 0) { i--; v = vg.getChildAt(i); if (canTextInput(v)) { return true; } } return false; }
Example 8
Source Project: XanderPanel File: PanelController.java License: Apache License 2.0 | 6 votes |
/** * 检测 view 是否可以输入 * * @param v * @return */ static boolean canTextInput(View v) { if (v.onCheckIsTextEditor()) { return true; } if (!(v instanceof ViewGroup)) { return false; } ViewGroup vg = (ViewGroup) v; int i = vg.getChildCount(); while (i > 0) { i--; v = vg.getChildAt(i); if (canTextInput(v)) { return true; } } return false; }
Example 9
Source Project: PreferenceFragment File: AlertController.java License: Apache License 2.0 | 6 votes |
static boolean canTextInput(View v) { if (v.onCheckIsTextEditor()) { return true; } if (!(v instanceof ViewGroup)) { return false; } ViewGroup vg = (ViewGroup)v; int i = vg.getChildCount(); while (i > 0) { i--; v = vg.getChildAt(i); if (canTextInput(v)) { return true; } } return false; }
Example 10
Source Project: Telegram-FOSS File: AlertDialog.java License: GNU General Public License v2.0 | 6 votes |
private boolean canTextInput(View v) { if (v.onCheckIsTextEditor()) { return true; } if (!(v instanceof ViewGroup)) { return false; } ViewGroup vg = (ViewGroup) v; int i = vg.getChildCount(); while (i > 0) { i--; v = vg.getChildAt(i); if (canTextInput(v)) { return true; } } return false; }
Example 11
Source Project: Telegram File: AlertDialog.java License: GNU General Public License v2.0 | 6 votes |
private boolean canTextInput(View v) { if (v.onCheckIsTextEditor()) { return true; } if (!(v instanceof ViewGroup)) { return false; } ViewGroup vg = (ViewGroup) v; int i = vg.getChildCount(); while (i > 0) { i--; v = vg.getChildAt(i); if (canTextInput(v)) { return true; } } return false; }
Example 12
Source Project: FirefoxReality File: KeyboardWidget.java License: Mozilla Public License 2.0 | 5 votes |
public void updateFocusedView(View aFocusedView) { if (mFocusedView != null && mFocusedView instanceof TextView) { ((TextView)mFocusedView).removeTextChangedListener(this); } mFocusedView = aFocusedView; if (aFocusedView != null && aFocusedView.onCheckIsTextEditor()) { mInputConnection = aFocusedView.onCreateInputConnection(mEditorInfo); resetKeyboardLayout(); if (mFocusedView != null && mFocusedView instanceof TextView) { ((TextView)mFocusedView).addTextChangedListener(this); } } else { cleanComposingText(); hideOverlays(); mInputConnection = null; } boolean showKeyboard = mInputConnection != null; boolean keyboardIsVisible = this.getVisibility() == View.VISIBLE; if (showKeyboard != keyboardIsVisible) { if (showKeyboard) { mWidgetManager.pushBackHandler(mBackHandler); } else { mWidgetManager.popBackHandler(mBackHandler); mWidgetManager.keyboardDismissed(); } getPlacement().visible = showKeyboard; mWidgetManager.updateWidget(this); } mCurrentKeyboard.clear(); updateCandidates(); updateSpecialKeyLabels(); }
Example 13
Source Project: android_9.0.0_r45 File: InputMethodManager.java License: Apache License 2.0 | 4 votes |
/** * Called by ViewAncestor when its window gets input focus. * @hide */ public void onPostWindowFocus(View rootView, View focusedView, @SoftInputModeFlags int softInputMode, boolean first, int windowFlags) { boolean forceNewFocus = false; synchronized (mH) { if (DEBUG) Log.v(TAG, "onWindowFocus: " + focusedView + " softInputMode=" + InputMethodClient.softInputModeToString(softInputMode) + " first=" + first + " flags=#" + Integer.toHexString(windowFlags)); if (mRestartOnNextWindowFocus) { if (DEBUG) Log.v(TAG, "Restarting due to mRestartOnNextWindowFocus"); mRestartOnNextWindowFocus = false; forceNewFocus = true; } focusInLocked(focusedView != null ? focusedView : rootView); } int controlFlags = 0; if (focusedView != null) { controlFlags |= CONTROL_WINDOW_VIEW_HAS_FOCUS; if (focusedView.onCheckIsTextEditor()) { controlFlags |= CONTROL_WINDOW_IS_TEXT_EDITOR; } } if (first) { controlFlags |= CONTROL_WINDOW_FIRST; } if (checkFocusNoStartInput(forceNewFocus)) { // We need to restart input on the current focus view. This // should be done in conjunction with telling the system service // about the window gaining focus, to help make the transition // smooth. if (startInputInner(InputMethodClient.START_INPUT_REASON_WINDOW_FOCUS_GAIN, rootView.getWindowToken(), controlFlags, softInputMode, windowFlags)) { return; } } // For some reason we didn't do a startInput + windowFocusGain, so // we'll just do a window focus gain and call it a day. synchronized (mH) { try { if (DEBUG) Log.v(TAG, "Reporting focus gain, without startInput"); mService.startInputOrWindowGainedFocus( InputMethodClient.START_INPUT_REASON_WINDOW_FOCUS_GAIN_REPORT_ONLY, mClient, rootView.getWindowToken(), controlFlags, softInputMode, windowFlags, null, null, 0 /* missingMethodFlags */, rootView.getContext().getApplicationInfo().targetSdkVersion); } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } } }