Reputation: 130
How to fix the tab at the bottom it moves up when I am trying to use the search (EditText
) in on of my fragments
I want the tabs to hide behind the keypad.
Upvotes: 0
Views: 318
Reputation: 3388
you can hide your tablayout when keyboard is visible
if(keyboardVisible)
tabHost.setVisibility( View.GONE );
else
tabHost.setVisibility( View.VISIBLE );
refer here to detect keyboard visibility
Upvotes: 1