简体   繁体   English

出现软键盘时如何隐藏FragmentTabHost android布局?

[英]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 当我尝试在片段中使用搜索( EditText )时,如何修复选项卡底部的向上移动

I want the tabs to hide behind the keypad. 我希望选项卡隐藏在键盘后面。

you can hide your tablayout when keyboard is visible 您可以在可见键盘时隐藏TabLayout

if(keyboardVisible)
      tabHost.setVisibility( View.GONE );    
 else
      tabHost.setVisibility( View.VISIBLE );

refer here to detect keyboard visibility 请参阅此处以检测键盘可见性

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM