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.
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.
 
    
    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
 
    
    