在我的应用程序中,我想在软键盘打开时覆盖部分布局。
我已尝试在清单中使用此代码,正如许多StackOverflow问题中所建议的那样:
android:windowSoftInputMode="stateHidden|adjustPan"
但它没有用,我的gridview中的项目仍然被推高。
修改 这是我的布局:http://pastebin.com/U2SjNLeV
有什么建议吗?
答案 0 :(得分:0)
使用ScrollView包裹您的布局。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
...
...
</ScrollView>