user4514782
user4514782

Reputation:

Can I force the soft keyboard to open when a device has a hard keyboard in Xamarin.Android?

I am trying to force the soft keyboard to open when a text entry is on focus, and when the Android device already has a hard keyboard?

According to this website, the following approach won't work (I also tried it out).

<activity
    android:windowSoftInputMode="stateVisible" ... >
    ...
</activity>

I have also tried using InputMethodManager.ShowSoftInput() with no success. I found this approach here.

Can anyone help further? Maybe the flags of ShowSoftInput need some particular values? Thanks a lot

Upvotes: 0

Views: 1069

Answers (0)

Related Questions