I want to show the soft keyboard, until my main activity is destroyed.

I can do this through:

  1. Adding following parameter to a activity tag in my manifest file
android:windowSoftInputMode="stateAlwaysVisible"
  1. Adding the following code to activity's onCreate() process:
EditText editText = (EditText)findViewById(R.id.enter);
((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)).
                     showSoftInput(editText, InputMethodManager.SHOW_FORCED);

However, after I add a WebView in my main activity, the situation changes.

When the WebView starts to load the specified url, the soft keyboard disappears.

Or when I click on the WebView, it disappears again. I don't know what's the reason.

link|improve this question

43% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.