Change theme to not have an action bar.

This will temporarily break activities which depend on the action bar until
the following commits replace their dependencies with a Toolbar instead.
This commit is contained in:
Peter Serwylo 2016-11-24 09:58:43 +11:00
parent 1bb82fa077
commit 30701ff9ac

View File

@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?> <?xml version='1.0' encoding='utf-8'?>
<resources xmlns:android="http://schemas.android.com/apk/res/android"> <resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppBaseThemeDark" parent="Theme.AppCompat"> <style name="AppBaseThemeDark" parent="Theme.AppCompat.NoActionBar">
<!-- backward-compatibility theme options go here --> <!-- backward-compatibility theme options go here -->
<item name="colorPrimary">@color/fdroid_blue_dark</item> <item name="colorPrimary">@color/fdroid_blue_dark</item>
@ -12,7 +12,7 @@
<item name="android:textViewStyle">@style/TextViewStyle</item> <item name="android:textViewStyle">@style/TextViewStyle</item>
</style> </style>
<style name="AppBaseThemeLight" parent="Theme.AppCompat.Light.DarkActionBar"> <style name="AppBaseThemeLight" parent="Theme.AppCompat.Light.NoActionBar">
<!-- backward-compatibility theme options go here --> <!-- backward-compatibility theme options go here -->
<item name="colorPrimary">@color/fdroid_blue</item> <item name="colorPrimary">@color/fdroid_blue</item>