阻止android軟鍵盤自動彈出

yangxi_001發表於2014-04-24
進入新 Activity介面,想阻止軟鍵盤自動彈出,只要在 AndroidManifest.xml 中對應的Activity下設定

android:windowSoftInputMode="adjustUnspecified|stateHidden"

<activity android:name=".ui.manage.AggMyPersonal" android:label="@string/title_my_personal_inform" android:screenOrientation="portrait" android:windowSoftInputMode="adjustUnspecified|stateHidden">

如何解決 Android 軟鍵盤彈出,會把原來的介面擠上去的問題?

        <activity android:name=".ui.manage.AggMyPersonal"
                  android:label="@string/title_my_personal_inform"
                  android:screenOrientation="portrait"
                  android:windowSoftInputMode="adjustPan">

相關文章