Example usage for android.inputmethodservice InputMethodService subclass-usage

List of usage examples for android.inputmethodservice InputMethodService subclass-usage

Introduction

In this page you can find the example usage for android.inputmethodservice InputMethodService subclass-usage.

Usage

From source file net.zhdev.ctrlvkeyboard.CtrlVKeyboard.java

/**
 * {@code CtrlVKeyboard} is a keyless keyboard that is controlled by Intent broadcast, on their own
 * and through Tasker.
 *
 * @author Julio Garcia Munoz (ZhDev)
 */

From source file com.example.android.commitcontent.app.ImageKeyboard.java

public class ImageKeyboard extends InputMethodService {

    private static final String TAG = "ImageKeyboard";
    private static final String AUTHORITY = "com.satheesh.android.commitcontent.ime.inputcontent";
    private static final String MIME_TYPE_GIF = "image/gif";
    private static final String MIME_TYPE_PNG = "image/png";

From source file com.example.android.commitcontent.ime.ImageKeyboard.java

public class ImageKeyboard extends InputMethodService {

    private static final String TAG = "ImageKeyboard";
    private static final String AUTHORITY = "com.example.android.commitcontent.ime.inputcontent";
    private static final String MIME_TYPE_GIF = "image/gif";
    private static final String MIME_TYPE_PNG = "image/png";

From source file com.volosyukivan.WiFiInputMethod.java

public class WiFiInputMethod extends InputMethodService {
    public static final int KEY_HOME = -1000;
    public static final int KEY_END = -1001;
    public static final int KEY_CONTROL = -1002;
    public static final int KEY_DEL = -1003;

From source file com.googlecode.eyesfree.brailleback.BrailleIME.java

/**
 * Input method service for keys from the connected braille display.
 */
public class BrailleIME extends InputMethodService {

    /** Interface between the IME and a "host" in the accessibility service. */

From source file research.sg.edu.edapp.kb.KbSoftKeyboard.java

/**
 * Example of writing an input method for a soft keyboard.  This code is
 * focused on simplicity over completeness, so it should in no way be considered
 * to be a complete soft keyboard implementation.  Its purpose is to provide
 * a basic example for how you would get started writing an input method, to
 * be fleshed out as appropriate.

From source file keyboard.ecloga.com.eclogakeyboard.EclogaKeyboard.java

public class EclogaKeyboard extends InputMethodService implements KeyboardView.OnTouchListener,
        GestureDetector.OnDoubleTapListener, KeyboardView.OnKeyboardActionListener {

    private boolean vbListenerPause;
    private ShakeListener mShaker;
    private KeyboardView kv;

From source file com.strathclyde.highlightingkeyboard.SoftKeyboardService.java

/**
 * Extends the InputMethodService class to provide the keyboard functionality
 * Handles the keyboard view creation and destruction
 * Manages user input and spell-checking
 * Stores user input data
 * Manages the highlighting of text in the editor views

From source file org.pocketworkstation.pckeyboard.LatinIME.java

/**
 * Input method implementation for Qwerty'ish keyboard.
 */
public class LatinIME extends InputMethodService implements ComposeSequencing,
        LatinKeyboardBaseView.OnKeyboardActionListener, SharedPreferences.OnSharedPreferenceChangeListener {
    private static final String TAG = "PCKeyboardIME";

From source file org.distantshoresmedia.keyboard.LatinIME.java

/**
 * Input method implementation for Qwerty'ish keyboard.
 */
public class LatinIME extends InputMethodService implements ComposeSequencing,
        BaseKeyboardView.OnKeyboardActionListener, SharedPreferences.OnSharedPreferenceChangeListener {
    private static final String TAG = "PCKeyboardIME";