I have a typical listview
with an edittext
and a button at the bottom of the activity.
When I click onto the edittext
, the sof
I read a lot of answers over StackOverflow and took some from many to make my app works:
No ScrollView
at all in my activity_main.xml
In AndroidManifest.xml
added this attribute to the
tag:
android:windowSoftInputMode="adjustResize"
MainActivity.java
inside onCreate()
I added getWindow().setBackgroundDrawableResource(R.drawable.app_bg);
It works for me when all the other solutions I've tried didn't. If you got up to here, I hope it'll work for you too.