FileDocCategorySizeDatePackage
InputMethodManager_Delegate.javaAPI DocAndroid 5.1 API1685Thu Mar 12 22:22:44 GMT 2015android.view.inputmethod

InputMethodManager_Delegate

public class InputMethodManager_Delegate extends Object
Delegate used to provide new implementation of a select few methods of {@link InputMethodManager} Through the layoutlib_create tool, the original methods of InputMethodManager have been replaced by calls to methods of the same name in this delegate class.

Fields Summary
Constructors Summary
Methods Summary
static InputMethodManagergetInstance()

        synchronized (InputMethodManager.class) {
            InputMethodManager imm = InputMethodManager.peekInstance();
            if (imm == null) {
                imm = new InputMethodManager(
                        new BridgeIInputMethodManager(), Looper.getMainLooper());
                InputMethodManager.sInstance = imm;
            }
            return imm;
        }