2012-09-08 13 views
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?

risposta

1

Per modificare i caratteri su una tastiera virtuale, è necessario creare un IME personalizzato.

Android doc