I had the same problem and solved it using the code below.
in your activity:
mylistview.setTranscriptMode(ListView.TRANSCRIPT_MODE_NORMAL); mylistview.setStackFromBottom(true);
or in xml file for
android:stackFromBottom="true" android:transcriptMode="normal"
and saving adjustResize for activity in the manifest file.
<activity .... android:windowSoftInputMode="stateHidden|adjustResize" ..../>
Source: Click Listview when keyboard appears without setting Pan
source share