Had a problem from recycler view and EditText. The focus is lost because of the view refresh. Have fixed this with below config from manifest
.
android:windowSoftInputMode="stateHidden|adjustResize|adjustPan"
However, this breaks my existing functionality. The EditText hidden behind the keyboard. To solve this the config needs to be changed.
android:windowSoftInputMode="adjustResize"
How can I solve both problems with a single config.