我在活动中显示了一个编辑对话框,当软键盘显示时,活动的窗口将被调整为太小,看起来很糟糕。I don't want the window of the activity be resized and layout. I just want the keyboard can cover on the activity window and the dialog move to the top so that soft keyboard have room to show.
我尝试在清单中使用android:windowSoftInputMode="xxxxx",但没有一种模式适合我的情况。我也发现了类似的问题,但它并没有解决我的问题。
编辑:我已经尝试过setImeOptions
,getWindown().setFlags
但它仍然没有奏效,任何建议将不胜感激。
EDIT2:我在 3.0 中尝试过,并使用 android:windowSoftInputMode="adjustNothing",效果很好,但是如何在 2.3 上实现呢?