I don't want to show the virtual keyboard.
I tried the below method but it doesn't make any difference.
InputMethodManager imm = InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(enter_count.getWindowToken(), 0);
enter_count is my edit text I have tried reading up on the InputMethod Manager but can't follow it.
I can set the input type of my edit text called enter_count as follows
enter_count.setInputType( InputType.TYPE_NULL );
but then I can't specify to only accept numeric input
Can you please give me a reasonable solution to simply not show the virtual keyboard without losing the ability to only accept numeric input on the physical keyboard.