Files
loongoffice/android/source/res/values/themes.xml
aleksandar-stefanovic faeb982d2f Fixed text alignment in list
Changed text alignment in file browser to not center horizontally,
because it should be glanceable and therefore should be left-aligned
(ideally the start-aligned).
See https://material.io/guidelines/components/lists.html .

Change-Id: I383141bc2f49b63927c136d911f50cfd15bdef45
Reviewed-on: https://gerrit.libreoffice.org/34290
Reviewed-by: Aleksandar Stefanović <theonewithideas@gmail.com>
Tested-by: Aleksandar Stefanović <theonewithideas@gmail.com>
2017-02-25 09:27:56 +00:00

23 lines
749 B
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LibreOfficeTheme" parent="LibreOfficeTheme.Base"/>
<style name="LibreOfficeTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
</style>
<style name="ListItemText">
<item name="android:gravity">center_vertical</item>
<item name="android:textColor">@android:color/black</item>
<item name="android:textSize">14sp</item>
</style>
<style name="LibreOfficeTheme.Toolbar" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/toolbar_background</item>
</style>
<style name="LibreOfficeTheme.NavigationView">
<item name="colorPrimary">@android:color/black</item>
</style>
</resources>