Compare commits

...

8 commits

Author SHA1 Message Date
HarryJohnso
956526b5f6
Navbar back to white 2019-10-30 11:40:37 +09:00
HarryJohnso
ddbcb18a0e
removing navigationBarColor from values-night-v27 2019-10-30 11:40:37 +09:00
HarryJohnso
0bef68c9f9
Overriding AppTheme 2019-10-30 11:40:37 +09:00
HarryJohnso
2eac57f68f
Alternative to Simons original proposal 2019-10-30 11:40:37 +09:00
HarryJohnso
539fc8f85e
last refactoring 2019-10-30 11:40:37 +09:00
HarryJohnso
2fce918a7e
refactoring style files 2019-10-30 11:40:37 +09:00
HarryJohnso
0c9521521e
uncommenting style items 2019-10-30 11:40:36 +09:00
HarryJohnso
3b2c37236b
adding style files 2019-10-30 11:40:34 +09:00
4 changed files with 16 additions and 4 deletions

View file

@ -51,7 +51,7 @@
<activity
android:name=".ui.PassListActivity"
android:label="@string/app_name"
android:theme="@style/AppBaseThemeNoActionbar">
android:theme="@style/AppThemeNoActionbar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
@ -64,7 +64,7 @@
<activity
android:name=".ui.HelpActivity"
android:theme="@style/AppBaseThemeNoActionbar"/>
android:theme="@style/AppThemeNoActionbar"/>
<activity
android:name=".ui.PassEditActivity"/>
<activity
@ -1792,7 +1792,7 @@
<activity
android:name=".ui.PassViewActivity"
android:theme="@style/AppBaseThemeNoActionbar"
android:theme="@style/AppThemeNoActionbar"
android:label="@string/app_name"
android:exported="true"
android:parentActivityName=".ui.PassListActivity">

View file

@ -0,0 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:navigationBarColor">@android:color/black</item>
<item name="android:windowLightNavigationBar">false</item>
</style>
</resources>

View file

@ -0,0 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:navigationBarColor">@android:color/white</item>
<item name="android:windowLightNavigationBar">true</item>
</style>
</resources>

View file

@ -1,6 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="AppBaseThemeNoActionbar" parent="AppBaseTheme">
<style name="AppThemeNoActionbar" parent="AppTheme">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>