Initial commit
A.k.a. "I should have done this some time ago"
This commit is contained in:
13
app/src/main/res/values/arrays.xml
Normal file
13
app/src/main/res/values/arrays.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string-array name="connection_modes">
|
||||
<item>full</item>
|
||||
<item>trusted</item>
|
||||
<item>offline</item>
|
||||
</string-array>
|
||||
<string-array name="connection_mode_values">
|
||||
<item>A full node, receiving and relaying objects all the time.</item>
|
||||
<item>Connect to a trusted node from time to time to get new objects.</item>
|
||||
<item>Don\'t connect to the network.</item>
|
||||
</string-array>
|
||||
</resources>
|
12
app/src/main/res/values/colors.xml
Normal file
12
app/src/main/res/values/colors.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Palette generated by Material Palette - materialpalette.com/blue-grey/orange -->
|
||||
<resources>
|
||||
<color name="primary">#607D8B</color>
|
||||
<color name="primary_dark">#455A64</color>
|
||||
<color name="primary_light">#CFD8DC</color>
|
||||
<color name="accent">#FF9800</color>
|
||||
<color name="primary_text">#212121</color>
|
||||
<color name="secondary_text">#727272</color>
|
||||
<color name="icons">#FFFFFF</color>
|
||||
<color name="divider">#B6B6B6</color>
|
||||
</resources>
|
11
app/src/main/res/values/strings.xml
Normal file
11
app/src/main/res/values/strings.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<resources>
|
||||
<string name="app_name">Abit</string>
|
||||
<string name="title_message_detail">Message Detail</string>
|
||||
<string name="disable_sync">Disable Sync</string>
|
||||
<string name="enable_sync">Enable Sync</string>
|
||||
<string name="bitmessage_active">Bitmessage active</string>
|
||||
<string name="wifi_mode">Wi-Fi Connection Mode</string>
|
||||
<string name="settings">Settings</string>
|
||||
<string name="wifi_only">Wi-Fi only</string>
|
||||
<string name="wifi_only_summary">Don\'t connect to the mobile network</string>
|
||||
</resources>
|
24
app/src/main/res/values/styles.xml
Normal file
24
app/src/main/res/values/styles.xml
Normal file
@ -0,0 +1,24 @@
|
||||
<resources>
|
||||
|
||||
<!-- Base application theme. -->
|
||||
<style name="AppTheme.Base" parent="MaterialDrawerTheme.Light.DarkToolbar.TranslucentStatus">
|
||||
|
||||
<item name="android:activatedBackgroundIndicator">@color/primary_light</item>
|
||||
|
||||
<!-- MaterialDrawer specific values -->
|
||||
<item name="material_drawer_background">@color/primary_dark</item>
|
||||
<item name="material_drawer_icons">@color/icons</item>
|
||||
<item name="material_drawer_primary_icon">@color/icons</item>
|
||||
<item name="material_drawer_primary_text">@color/icons</item>
|
||||
<item name="material_drawer_secondary_text">@color/icons</item>
|
||||
<item name="material_drawer_hint_text">@color/icons</item>
|
||||
<item name="material_drawer_divider">@color/icons</item>
|
||||
<item name="material_drawer_selected">@color/primary</item>
|
||||
<item name="material_drawer_selected_text">@color/icons</item>
|
||||
<item name="material_drawer_header_selection_text">@color/icons</item>
|
||||
|
||||
</style>
|
||||
|
||||
<style name="AppTheme" parent="AppTheme.Base"/>
|
||||
|
||||
</resources>
|
Reference in New Issue
Block a user