我有一个数字选择器,但我的键盘没有像我想的那样出现。
屏幕:
如您所见,键盘覆盖了部分编辑文本。
如何在不使用滚动视图的情况下修复此?
我已经尝试过设置android:windowSoftInputMode =“adjustPan”或“adjustResize”。
当我使用scrollview时,我遇到以下问题: Screen shifts a bit when change focus to next edittext
Thx:)
答案 0 :(得分:-1)
android:windowSoftInputMode="adjustResize|stateHidden"
喜欢:
<activity
android:name=".LoginActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:windowSoftInputMode="adjustResize|stateHidden" >
它应该有用