Lots of progress with dynamic theming, the nav drawer now uses a RecyclerView, AboutDeveloperDialogHelper is now a DialogFragment, RTL support (to suppress Lint warnings), other various small fixes, cleaned up and formatted lot of code (and removed un-used resources), R.string.ok > android.R.string.ok, R.string.cancel > android.R.string.cancel, switched dialog helpers to DialogFragments.
This commit is contained in:
parent
c1b258dadd
commit
7ce86afd74
265 changed files with 2853 additions and 2292 deletions
|
|
@ -3,6 +3,6 @@
|
|||
<color name="notification_buttons_tint">#de000000</color>
|
||||
|
||||
<!--must be solid colors so the ripple will not be semi transparent. Note: the color have no effect on the ripple-->
|
||||
<color name="button_selected">#FFFFFFFF</color>
|
||||
<color name="button_selected_dark">#FFFFFFFF</color>
|
||||
<!--<color name="button_selected">#FFFFFFFF</color>-->
|
||||
<!--<color name="button_selected_dark">#FFFFFFFF</color>-->
|
||||
</resources>
|
||||
7
app/src/main/res/values-v21/fonts.xml
Normal file
7
app/src/main/res/values-v21/fonts.xml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<!-- normal -->
|
||||
<string name="font_fontFamily_medium" translatable="false">sans-serif-medium</string>
|
||||
|
||||
</resources>
|
||||
6
app/src/main/res/values-v21/integers.xml
Normal file
6
app/src/main/res/values-v21/integers.xml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<integer name="font_textStyle_medium">0</integer>
|
||||
|
||||
</resources>
|
||||
|
|
@ -3,16 +3,18 @@
|
|||
<style name="Theme.MaterialMusic" parent="Theme.MaterialMusic.Base">
|
||||
<item name="round_selector">@drawable/round_ripple_selector_dark</item>
|
||||
<item name="rect_selector">@drawable/rect_ripple_selector_dark</item>
|
||||
<item name="list_selector">@drawable/list_ripple_selector_dark</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.MaterialMusic.Light" parent="Theme.MaterialMusic.Base.Light">
|
||||
<item name="round_selector">@drawable/round_ripple_selector</item>
|
||||
<item name="rect_selector">@drawable/rect_ripple_selector</item>
|
||||
<item name="list_selector">@drawable/list_ripple_selector</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.MaterialMusic.Notification" parent="@android:style/TextAppearance.Material.Notification"/>
|
||||
<style name="Theme.MaterialMusic.Notification" parent="@android:style/TextAppearance.Material.Notification" />
|
||||
|
||||
<style name="Theme.MaterialMusic.Notification.Title" parent="@android:style/TextAppearance.Material.Notification.Title"/>
|
||||
<style name="Theme.MaterialMusic.Notification.Title" parent="@android:style/TextAppearance.Material.Notification.Title" />
|
||||
|
||||
<style name="PlayPauseFab" parent="PlayPauseFabParent">
|
||||
<item name="android:elevation">8dp</item>
|
||||
|
|
@ -30,4 +32,5 @@
|
|||
<item name="android:progressTint">@color/materialmusic_accent_color</item>
|
||||
<item name="android:padding">0dp</item>
|
||||
</style>
|
||||
</resources>
|
||||
|
||||
</resources>
|
||||
Loading…
Add table
Add a link
Reference in a new issue