diff options
author | brainbreaker <gautamprajapati06@gmail.com> | 2017-03-27 22:26:47 +0530 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2017-04-19 14:45:54 +0200 |
commit | 78098b8494be7123bc4a8b50faa13445e5afd8ce (patch) | |
tree | 3ffb590a1b0f815f87b31f885a303c42bed6ac41 /android/source/AndroidManifest.xml | |
parent | bc6ccee31e397ebda706640bd82df3282f92c60b (diff) |
Add BottomSheetBehavior to formatting toolbar
This commit adds the BottomSheetBehavior to the
formatting toolbar appearing from bottom.
CoordinatorLayout replaces the RelativeLayout in activity_main
and bottom toolbar is made the child of it.
Also, Add 'adjustPan' option to LibreOfficeMainActivity's
windowSoftInputMode flag so as to prevent soft keyboard
from pushing the views up
Change-Id: Ic9999c1177ac238bc7c482a69daec4e629fe6d93
Reviewed-on: https://gerrit.libreoffice.org/35768
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'android/source/AndroidManifest.xml')
-rw-r--r-- | android/source/AndroidManifest.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/source/AndroidManifest.xml b/android/source/AndroidManifest.xml index d0fde624572d..56fe63d62008 100644 --- a/android/source/AndroidManifest.xml +++ b/android/source/AndroidManifest.xml @@ -25,7 +25,7 @@ android:name=".LibreOfficeMainActivity" android:label="@string/app_name" android:configChanges="orientation|keyboard|keyboardHidden|screenLayout|uiMode|screenSize|smallestScreenSize" - android:windowSoftInputMode="adjustResize" > + android:windowSoftInputMode="adjustPan|adjustResize" > <intent-filter> <action android:name="android.intent.action.VIEW" /> |