I want to pop up the device keyboard when I enter to Email Login screen.
I declared the windowSoftInputMode
to "stateVisible"
in the AndroidManifest.xml file:
<activity
android:name=".activities.EmailLoginActivity"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateVisible" />
I have followed this documentation.
Results:
On devices that run Android API up to 27, the keyboard is shown.
On devices that run the Android API 28, the keyboard is not shown.
Is it a bug in Android Pie?
Any suggestion?