diff options
author | Ximeng Zu <uznomis@yahoo.com> | 2017-03-26 12:25:19 -0500 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2017-03-30 20:16:50 +0000 |
commit | c1769e9b27bcf62e644927139d07ee195803363a (patch) | |
tree | eb9951b59207b5eb744b34b111235898a3a1c5ae /android | |
parent | 72b9fe1d470ea0d22f433598b1d2f68d1be12057 (diff) |
tdf#96816 android: top part unreachable with soft keyboard
Uncomment in Manifest file the line related to input method:
android:windowSoftInputMode="adjustResize"
This allows for panning and zooming to the top part of the
document.
Change-Id: Ic75489071add6b52948d381f4f8b7205148b78ef
Reviewed-on: https://gerrit.libreoffice.org/35721
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'android')
-rw-r--r-- | android/source/AndroidManifest.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/source/AndroidManifest.xml b/android/source/AndroidManifest.xml index 601f478ae352..d0fde624572d 100644 --- a/android/source/AndroidManifest.xml +++ b/android/source/AndroidManifest.xml @@ -24,8 +24,8 @@ <activity android:name=".LibreOfficeMainActivity" android:label="@string/app_name" - android:configChanges="orientation|keyboard|keyboardHidden|screenLayout|uiMode|screenSize|smallestScreenSize" > - <!-- android:windowSoftInputMode="adjustResize" --> + android:configChanges="orientation|keyboard|keyboardHidden|screenLayout|uiMode|screenSize|smallestScreenSize" + android:windowSoftInputMode="adjustResize" > <intent-filter> <action android:name="android.intent.action.VIEW" /> |