Android 调整盘不工作

Android 调整盘不工作,android,android-layout,Android,Android Layout,在我的应用程序中,我想在软键盘打开时覆盖部分布局 我尝试在清单中使用此代码,正如许多StackOverflow问题中所建议的: android:windowSoftInputMode="stateHidden|adjustPan" 但它不起作用,我的gridview中的项目仍然被推上 编辑 以下是我的布局: 有什么建议吗?用滚动视图包装布局 <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="ht

在我的应用程序中,我想在软键盘打开时覆盖部分布局

我尝试在清单中使用此代码,正如许多StackOverflow问题中所建议的:

android:windowSoftInputMode="stateHidden|adjustPan"
但它不起作用,我的gridview中的项目仍然被推上

编辑 以下是我的布局:


有什么建议吗?

用滚动视图包装布局

<?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>

...
...

使用滚动视图包装布局

<?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>

...
...

你能提供布局的xml吗?@KinnarVasa问题更新你能提供布局的xml吗?@KinnarVasa问题更新