I want to show the soft keyboard, until my main activity is destroyed.
I can do this through:
- Adding following parameter to a activity tag in my manifest file
android:windowSoftInputMode="stateAlwaysVisible"
- 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.