Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show soft keyboard even though a hardware keyboard is connected

Tags:

Is there any way to show software keyboard with USB keyboard connected (in my case RFID reader)?
I tried to force show it using InputManager (with these or similar parameters), but with no luck

((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)).toggleSoftInput(InputMethodManager.SHOW_FORCED,0); 

Important notice - I know that there is a button in status/system bar to show it, but this button is not visible to user (Kiosk app).

like image 907
Warlock Avatar asked Jul 22 '12 16:07

Warlock


People also ask

What does soft keyboard mean?

A soft keyboard (sometimes called an onscreen keyboard or software keyboard ) is a system that replaces the hardware keyboard on a computing device with an on-screen image map .

How can I tell if my keyboard is open or soft?

Android provides no direct way to determine if the keyboard is open, so we have to get a little creative. The View class has a handy method called getWindowVisibleDisplayFrame from which we can retrieve a rectangle which contains the portion of the view visible to the user.

What is a soft input?

The Android system shows an on-screen keyboard—known as a soft input method—when a text field in your UI receives focus.


2 Answers

You need to override the InputMethodService method onEvaluateInputViewShown() to evaluate to true even when there is a hard keyboard. See onEvaluateInputShown() and the Soft Input View section of InputMethodService. Try creating your own custom InputMethodService class to override this method.

EDIT: The source for onEvaluateInputShown() should help. The solution should be as simple as creating your own class that extends InputMethodService and overriding this one method, which is only a couple of lines long. Make sure to add your custom service to your manifest as well.

From Source:

"Override this to control when the soft input area should be shown to the user. The default implementation only shows the input view when there is no hard keyboard or the keyboard is hidden. If you change what this returns, you will need to call updateInputViewShown() yourself whenever the returned value may have changed to have it re-evalauted and applied."

public boolean onEvaluateInputViewShown() {      Configuration config = getResources().getConfiguration();      return config.keyboard == Configuration.KEYBOARD_NOKEYS              || config.hardKeyboardHidden == Configuration.KEYBOARDHIDDEN_YES; } 

Here are the possible configurations you can check for. Configuration.KEYBOARD_NOKEYS corresponds to no hardware keyboard. This method returns true (soft keyboard should be shown) if there is no hardware keyboard or if the hardware keyboard is hidden. Removing both of these checks and simply returning true should make the software keyboard visible even if a hardware keyboard is attached.

Try (not tested):

public boolean onEvaluateInputViewShown() {      return true; } 

Since this return value will not change, you won't need to call updateInputViewShown() yourself. If you modify this method differently, be sure to remember this detail.

like image 192
Andy Harris Avatar answered Oct 01 '22 18:10

Andy Harris


The soft keyboard can have unpredictable behaviour on different platforms. First in your code, ensure you have an editable input control. Eg, if you have an EditText, you could use:

((InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE))     .showSoftInput(myEditText, InputMethodManager.SHOW_FORCED); 

However, you can just show and hide it whenever you want using:

//show keyboard: getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE); //hide keyboard :  getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN); 

You could also add any of these events inside OnCreate or some other method of the controls.

If however for some reason any of the above fails, your best option might be to use an alternative keyboard, e.g. Compass Keyboard,

OR

You could even build yours:

See an example of a keyboard implementing the inputmethodservice.KeyboardView

You might also want to take a look at the GingerBread Keyboard source.

like image 22
Chibueze Opata Avatar answered Oct 01 '22 19:10

Chibueze Opata