I am trying to show numeric software keyboard on Android Tv when edittext is focused.
I have already tried these;
editText.setInputType(InputType.TYPE_CLASS_PHONE);
editText.setInputType(InputType.TYPE_CLASS_NUMBER);
editText.setRawInputType(Configuration.KEYBOARD_12KEY);
android:inputType="phone"
android:inputType="number"
but they only disable text characters, don't make them invisible.
Is there a way to show phone type software keyboard on Android Tv?