
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.
16 lines
No EOL
470 B
XML
16 lines
No EOL
470 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle"
|
|
android:tint="?attr/colorSecondary">
|
|
|
|
<corners android:radius="8dp" />
|
|
<padding
|
|
android:bottom="4dp"
|
|
android:left="2dp"
|
|
android:right="2dp"
|
|
android:top="4dp" />
|
|
<size
|
|
android:width="8dp"
|
|
android:height="52dp" />
|
|
<solid android:color="@android:color/white" />
|
|
</shape> |