Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我需要使用 EditText。但我有一个问题。在某些固件(例如冰淇淋三明治)上,当用户单击 edittext 时,键盘会将整个屏幕向上推!我想关掉它。
我尝试添加 android:windowSoftInputMode="adjustResize"。没有改变。
请帮帮我。
尝试
android:windowSoftInputMode="adjustPan"
对你来说完美的工作。
将此添加到您的 AndroidManifest.xml
android:windowSoftInputMode="stateHidden"
非常适合我。你试试这个。