Compare commits
8 commits
Author | SHA1 | Date | |
---|---|---|---|
|
956526b5f6 | ||
|
ddbcb18a0e | ||
|
0bef68c9f9 | ||
|
2eac57f68f | ||
|
539fc8f85e | ||
|
2fce918a7e | ||
|
0c9521521e | ||
|
3b2c37236b |
4 changed files with 16 additions and 4 deletions
|
@ -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">
|
||||
|
|
6
android/src/main/res/values-night-v27/styles.xml
Executable file
6
android/src/main/res/values-night-v27/styles.xml
Executable 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>
|
6
android/src/main/res/values-v27/styles.xml
Executable file
6
android/src/main/res/values-v27/styles.xml
Executable 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>
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue