
Use Slider and FloatingActionbutton in the playback view. This is not because I wanted to, but because there were insane bugs on Lollipop devices that stemmed from them being unable to load complex selector resources.
13 lines
552 B
XML
13 lines
552 B
XML
<?xml version="1.0" encoding="utf-8"?><!-- Hack to make MaterialShapeDrawable cooperate with RippleDrawable. See
|
|
CompactPlaybackView for more info. -->
|
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:color="?attr/colorControlHighlight">
|
|
<item android:id="@android:id/mask">
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="@android:color/white" />
|
|
</shape>
|
|
</item>
|
|
<item android:id="@android:id/background">
|
|
<shape android:shape="rectangle" />
|
|
</item>
|
|
</ripple>
|