我在应用程序中打开键盘时遇到了一点问题.我有一个位于页面底部的标签栏,在某些情况下,并非总是当我点击编辑文本并显示键盘时,它会将我的标签栏移到它上面.这是一个例子:
I have a little problem when I open keyboard in my application. I have a tab bar which is on bottom of page and in some situations, not always when I click on edit text and keyboard shows up, it's moving my tab bar on top of it. Here is an example :
所以我的问题是:有没有办法禁用它.我希望我的标签栏在显示时保持隐藏在键盘下.
So my question is : Is there any way to disable this. I want my tab bar to stay hidden under keyboard when it shows up.
提前致谢!
在清单文件中为您的活动添加这些属性:
add these properties for your activity in manifest file:
android:windowSoftInputMode="stateHidden|adjustResize|adjustPan"
希望对你有帮助
这篇关于Android键盘将标签栏放在顶部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!