首先请不要复制,因为所有其他相关帖子都没有帮助!
当我到达底部时,我有一个Tab bar
和fragment
组合形式,然后键盘下的所有底部内容都不可见。在键盘下有3-4个Edit Text
正在获得关注,但当我输入内容时,不会超过键盘。
问题在于xml属性:
android:windowSoftInputMode="adjustResize|adjustPan"
AndroidManifest.xml中的
<activity
android:name=".MyActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize|adjustPan"
android:theme="@android:style/Theme.NoTitleBar">
</activity>
我必须这样做,因为我不希望Tab bar
超越键盘。
请帮忙!