How to stop Scrollview from moving background image to top while pressing EditText?
Change ScrollView
to androidx.core.widget.NestedScrollView
if you use androidx or NestedScrollView
from support package. If you didn't hide anything in the top of your xml this is gonna work(just checked it in test project).
Add this in Activity Manifest
android:windowSoftInputMode="adjustNothing"