Java Code Examples for android.view.View#onCheckIsTextEditor()

The following examples show how to use android.view.View#onCheckIsTextEditor() . 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 File: AlertDialog.java    From TelePlus-Android with GNU General Public License v2.0 6 votes vote down vote up
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 File: DynamicAlertController.java    From dynamic-support with Apache License 2.0 6 votes vote down vote up
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 File: RewriteAlertController.java    From FoodOrdering with Apache License 2.0 6 votes vote down vote up
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 File: AlertDialog.java    From TelePlus-Android with GNU General Public License v2.0 6 votes vote down vote up
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 File: AlertDialog.java    From LLApp with Apache License 2.0 6 votes vote down vote up
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 File: AlertController.java    From ticdesign with Apache License 2.0 6 votes vote down vote up
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 File: MLAlertController.java    From NewXmPluginSDK with Apache License 2.0 6 votes vote down vote up
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 File: PanelController.java    From XanderPanel with Apache License 2.0 6 votes vote down vote up
/**
 * 检测 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 File: AlertController.java    From PreferenceFragment with Apache License 2.0 6 votes vote down vote up
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 File: AlertDialog.java    From Telegram-FOSS with GNU General Public License v2.0 6 votes vote down vote up
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 File: AlertDialog.java    From Telegram with GNU General Public License v2.0 6 votes vote down vote up
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 File: KeyboardWidget.java    From FirefoxReality with Mozilla Public License 2.0 5 votes vote down vote up
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 File: InputMethodManager.java    From android_9.0.0_r45 with Apache License 2.0 4 votes vote down vote up
/**
 * 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();
        }
    }
}