I am trying to disable\freeze android hard keyboard from an Android Activity using the following pieces of code.But none is working.
android:configChanges="keyboardHidden"
in manifest file.
Also inside Activity
Configuration config = getResources().getConfiguration();
config.hardKeyboardHidden=1;
Please let me know how to disable the hardkeyboard from an Activity in android?