qwertygamer
qwertygamer

Reputation: 130

How to hide FragmentTabHost android layout when soft keyboard appears?

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

Answers (1)

SaravInfern
SaravInfern

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

Related Questions