Audinaut-subsonic-app-android/app/src/main/res/values/styles.xml

68 lines
2.8 KiB
XML
Raw Normal View History

2016-12-18 18:41:30 +01:00
<?xml version="1.0" encoding="utf-8"?>
<resources>
2018-03-25 03:28:28 +02:00
2018-03-24 20:25:12 +01:00
<style name="BasicButton">
2019-08-24 20:28:41 +02:00
<item name="background">?attr/selectableItemBackgroundBorderless</item>
2018-03-24 20:25:12 +01:00
</style>
2018-03-25 03:28:28 +02:00
2018-03-24 20:25:12 +01:00
<style name="NotificationButtonBase">
2019-08-24 20:28:41 +02:00
<item name="background">?attr/selectableItemBackground</item>
2018-03-24 20:25:12 +01:00
<item name="android:layout_width">46dip</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:layout_gravity">center</item>
<item name="android:scaleType">fitCenter</item>
<item name="android:padding">2dip</item>
2019-08-25 04:02:06 +02:00
<item name="android:background">@android:color/transparent</item>
2018-03-24 20:25:12 +01:00
</style>
2018-03-25 03:28:28 +02:00
2019-08-25 04:21:52 +02:00
<style name="NotificationButton" parent="NotificationButtonBase">
<item name="background">?attr/selectableItemBackgroundBorderless</item>
</style>
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
<style name="MoreButton" parent="@style/BasicButton">
<item name="android:paddingRight">2dp</item>
</style>
2016-12-18 18:41:30 +01:00
<style name="PlaybackControl" parent="@style/BasicButton">
<item name="android:scaleType">fitCenter</item>
<item name="android:layout_marginLeft">4dip</item>
<item name="android:layout_marginRight">4dip</item>
<item name="android:layout_width">@dimen/Button</item>
<item name="android:layout_height">@dimen/Button</item>
<item name="android:contentDescription">@null</item>
2019-08-25 04:02:06 +02:00
<item name="android:background">@android:color/transparent</item>
2016-12-18 18:41:30 +01:00
</style>
2018-03-24 20:25:12 +01:00
<style name="PlaybackControl.Small" parent="@style/PlaybackControl">
2016-12-18 18:41:30 +01:00
<item name="android:layout_width">@dimen/Button.Small</item>
<item name="android:layout_height">@dimen/Button.Small</item>
</style>
2018-03-24 20:25:12 +01:00
<style name="PlaybackControl.Large" parent="@style/PlaybackControl">
<item name="android:layout_width">@dimen/Button.Large</item>
<item name="android:layout_height">@dimen/Button.Large</item>
<item name="android:paddingLeft">3dp</item>
<item name="android:paddingRight">3dp</item>
</style>
2016-12-18 18:41:30 +01:00
2019-03-19 05:12:47 +01:00
<style name="PlaybackControl.Larger" parent="@style/PlaybackControl">
<item name="android:layout_width">@dimen/Button.Larger</item>
<item name="android:layout_height">@dimen/Button.Larger</item>
</style>
2018-03-24 20:25:12 +01:00
<style name="PlaybackControl.Match" parent="@style/PlaybackControl">
<item name="android:layout_height">match_parent</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:scaleType">fitCenter</item>
</style>
2016-12-18 18:41:30 +01:00
2018-03-24 20:25:12 +01:00
<style name="PlaybackControl.BottomBar" parent="@style/PlaybackControl.Match">
<item name="android:layout_width">0dp</item>
<item name="android:layout_weight">1</item>
</style>
2016-12-18 18:41:30 +01:00
2019-03-19 04:19:58 +01:00
<style name="SeekBar">
<item name="colorAccent">?android:textColorPrimary</item>
</style>
2018-03-24 20:25:12 +01:00
</resources>