我在应用程序中打开键盘时遇到了一点问题.我有一个位于页面底部的标签栏,在某些情况下,并非总是当我点击编辑文本并显示键盘时,它会将我的标签栏移到它上面.这是一个例子:
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键盘将标签栏放在顶部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
EditText:禁用文本选择处理程序单击事件上的粘贴EditText: Disable Paste/Replace menu pop-up on Text Selection Handler click event(EditText:禁用文本选择处理程序单击事件上的粘贴/替换菜
2.3 上带有完成 SoftInput 操作标签的多行 EditTextMultiline EditText with Done SoftInput Action Label on 2.3(2.3 上带有完成 SoftInput 操作标签的多行 EditText)
如何在 Android 中检测向左或向右滑动?How to detect the swipe left or Right in Android?(如何在 Android 中检测向左或向右滑动?)
防止在Android中的屏幕旋转对话框解除Prevent dialog dismissal on screen rotation in Android(防止在Android中的屏幕旋转对话框解除)
如何处理 ImeOptions 的完成按钮点击?How do I handle ImeOptions#39; done button click?(如何处理 ImeOptions 的完成按钮点击?)
您如何将 EditText 设置为仅接受 Android 中的数值How do you set EditText to only accept numeric values in Android?(您如何将 EditText 设置为仅接受 Android 中的数值?)