Android soft keyboard resize the web view and css get misaligned when focus on the textbox.
To solve this problem by following this steps:
1. Go to your Android application directory.
2. Open AndroidManifest.xml
3. Add
To solve this problem by following this steps:
1. Go to your Android application directory.
2. Open AndroidManifest.xml
3. Add
android:windowSoftInputMode="adjustPan
to <activity>
Code Below:
<!-- Before -->
<activity android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name" android:name="PhotoGap">
<!-- After -->
<activity android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustPan" android:label="@string/app_name"
android:name="PhonegapDemo">
For More Info:Click Here
No comments:
Post a Comment