Could anyone help me the way which combination of
android:inputType
can directly show the softkeyboard with numbers and different digits in it. Take a look on that screenshot: needed softkeyboard That is what I'm looking for.
I have found combination of
android:inputType="text|textVisiblePassword"
which shows such keyboard: found softkeyboard. But it's not what I'm looking for.
Thanks in advance.
Android TV's GBoard (Keyboard app) only supports email, password, text, and numeric input layouts. Unfortunately none of those is very close to what you're looking for. You can either implement a keyboard-like UI within your app to accomplish what you're looking for (substantial undertaking) or use the password layout and give instructions to the user, depending on your use case.