FileDocCategorySizeDatePackage
LatinKeyboardView.javaAPI DocAndroid 1.5 API1480Wed May 06 22:41:08 BST 2009com.example.android.softkeyboard

LatinKeyboardView

public class LatinKeyboardView extends android.inputmethodservice.KeyboardView

Fields Summary
static final int
KEYCODE_OPTIONS
Constructors Summary
public LatinKeyboardView(android.content.Context context, android.util.AttributeSet attrs)


         
        super(context, attrs);
    
public LatinKeyboardView(android.content.Context context, android.util.AttributeSet attrs, int defStyle)

        super(context, attrs, defStyle);
    
Methods Summary
protected booleanonLongPress(android.inputmethodservice.Keyboard.Key key)

        if (key.codes[0] == Keyboard.KEYCODE_CANCEL) {
            getOnKeyboardActionListener().onKey(KEYCODE_OPTIONS, null);
            return true;
        } else {
            return super.onLongPress(key);
        }