2
我正在開發一個phonegap應用程序,當輸入字段值時出現虛擬鍵盤時出現問題,虛擬鍵盤出現時字段變得隱藏。在活動的OnCreatePhonegap + onsoft鍵盤調整盤
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, target-densityDpi=device-dpi" />
:
我已經添加以下代碼: 在HTML頁面
this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
在Android清單文件:
<activity
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan|stateVisible|adjustResize"
android:configChanges="orientation|keyboardHidden"
android:name="com.newgen.omniflowmobile.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>