I have tabs at the bottom on my activity. Problem is that I have TextViews on activity and when I want to write text, keyboard shows but keyboard lift up bottom tab icons and make partly invisible TextView. Is there any chance to make keyboard to shows over tab icons ( not to lift up bottom tab icons) ?
Share
You will have to look around the
android:windowSoftInputModewhich has attributesadjustResizeandadjustPan.From the link I guess adding
android:windowSoftInputMode="adjustResize|adjustPan"in the Manifest file should do the trick for you.