• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps big simple Number keyboard

Bilbo0a

Lurker
i am developing an application where you just have to enter simple numbers. plain integers. so I would like to have a keyboard open that has big tiles for the 10 digits we have . on the emulator there is such a keyboard, but when i port it to my desire hd the number keyboard is much smaller with all digits being on top.
is there such a number keyboard that i could attach to my program or am i better off to design a layout with loads of buttons?

appreciate your input.

thanks
 
Sorry if you've already done this but have you tried using android:inputType="number" in your xml file for the input text?

(in the java code yourEditText.setRawInputType(TYPE_CLASS_NUMBER); should work too I think)
 
Back
Top Bottom