FileDocCategorySizeDatePackage
TimeKeyListener.javaAPI DocAndroid 5.1 API1773Thu Mar 12 22:22:10 GMT 2015android.text.method

TimeKeyListener

public class TimeKeyListener extends NumberKeyListener
For entering times in a text field.

As for all implementations of {@link KeyListener}, this class is only concerned with hardware keyboards. Software input methods have no obligation to trigger the methods in this class.

Fields Summary
public static final char[]
CHARACTERS
The characters that are used.
private static TimeKeyListener
sInstance
Constructors Summary
Methods Summary
protected char[]getAcceptedChars()

        return CHARACTERS;
    
public intgetInputType()

        return InputType.TYPE_CLASS_DATETIME
        | InputType.TYPE_DATETIME_VARIATION_TIME;
    
public static android.text.method.TimeKeyListenergetInstance()

        if (sInstance != null)
            return sInstance;

        sInstance = new TimeKeyListener();
        return sInstance;