FileDocCategorySizeDatePackage
DateTimeKeyListener.javaAPI DocAndroid 5.1 API1831Thu Mar 12 22:22:10 GMT 2015android.text.method

DateTimeKeyListener

public class DateTimeKeyListener extends NumberKeyListener
For entering dates and times in the same 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 DateTimeKeyListener
sInstance
Constructors Summary
Methods Summary
protected char[]getAcceptedChars()

        return CHARACTERS;
    
public intgetInputType()

        return InputType.TYPE_CLASS_DATETIME
                | InputType.TYPE_DATETIME_VARIATION_NORMAL;
    
public static android.text.method.DateTimeKeyListenergetInstance()

        if (sInstance != null)
            return sInstance;

        sInstance = new DateTimeKeyListener();
        return sInstance;