I want to prevent my activity from resizing when my keyboard opens.
I know I can use android:windowSoftInputMode=\"adjustNothing\" in my manifest folder to
android:windowSoftInputMode=\"adjustNothing\"
Try to add in your code in onCreate
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
In case you are using a scroll view please add this
android:isScrollContainer="false"