4

I would like to have a numeric keyboard so I used android:inputType="phone".

But I do not need (,),+,*,#,$ symbols. I would like to be able to use capital N instead. So, I need a keyboard with 0-9 and N.

Orlymee
  • 2,325
  • 1
  • 20
  • 24
JustCurious
  • 1,758
  • 2
  • 29
  • 53

2 Answers2

3

You'll find a response in this article

Android Developers Blog: Updating application for on screen

I guess :)

Orlymee
  • 2,325
  • 1
  • 20
  • 24
Anass
  • 5,682
  • 6
  • 25
  • 35
1

As far as i know you cant make custom keyboard layout because the layouts are part of the InputMethod application installed by the user.

You can however disable the default keyboard poping-up and build your own custom 'drawer action' layout which will have keys on it and have the same function of a keyboard while actually its just a UI element which you implement.

Community
  • 1
  • 1
skoperst
  • 2,103
  • 1
  • 21
  • 32