I have been designing an application which holds an expandable list. At the end of every list, an empty EditText is ready to receive comments. I have the following
EditText
I had this problem with android.support.design.widget.TextInputEditText and it was solved from changing the flag order in manifest from:
android.support.design.widget.TextInputEditText
android:windowSoftInputMode="stateHidden|adjustPan"
to
android:windowSoftInputMode="adjustPan|stateHidden"