键盘掩盖了edittext的一部分

时间:2012-10-04 13:52:18

标签: android

我有一个数字选择器,但我的键盘没有像我想的那样出现。

屏幕:

enter image description here

如您所见,键盘覆盖了部分编辑文本。

如何在不使用滚动视图的情况下修复此

我已经尝试过设置android:windowSoftInputMode =“adjustPan”或“adjustResize”。

当我使用scrollview时,我遇到以下问题: Screen shifts a bit when change focus to next edittext

Thx:)

1 个答案:

答案 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" >

它应该有用