libgdx - Android - Show on-screen keyboard while a hardware keyboard is connected -
i have peripheral device keyboard (with incomplete buttons) connected via mini-usb cord tablet. setting focus textfield input.
i have used both libgdx functions
gdx.input.setonscreenkeyboardvisible(true); and native android/java functions
inputmethodmanager mgr = (inputmethodmanager) appactivity.getsystemservice(context.input_method_service); mgr.showsoftinput(appactivity.getcurrentfocus(), inputmethodmanager.show_forced); they both work while hardware keyboard disconnected don't when hardware connected.
is there way tell android/libgdx disable hardware keyboard?
Comments
Post a Comment