5
Come posso aggiungere due punti (:) per la tastiera con il tipo di ingresso InputType.TYPE_CLASS_NUMBER
Attualmente ho il seguente codice:Aggiungere due punti per tastiera InputType.TYPE_CLASS_NUMBER
NumberKeyListener keyListener = new NumberKeyListener() {
public int getInputType() {
return InputType.TYPE_CLASS_NUMBER;
}
@Override
protected char[] getAcceptedChars() {
return new char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '.', ':', '-', ',' };
}
};
mytext.setKeyListener(keyListener);
Ma mi piace anche i due punti (:) sulla tastiera numerica?