Landscape artist view & new progress slider
This commit is contained in:
parent
17e78fdc5e
commit
85854939c4
23 changed files with 98 additions and 116 deletions
4
app/src/main/res/drawable/seekbar_progress.xml
Normal file
4
app/src/main/res/drawable/seekbar_progress.xml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="#00000000"/>
|
||||
</shape>
|
||||
4
app/src/main/res/drawable/seekbar_thumb.xml
Normal file
4
app/src/main/res/drawable/seekbar_thumb.xml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@drawable/seekbar_thumb_pressed" android:state_pressed="false"/>
|
||||
<item android:drawable="@drawable/seekbar_thumb_normal"/>
|
||||
</selector>
|
||||
10
app/src/main/res/drawable/seekbar_thumb_normal.xml
Normal file
10
app/src/main/res/drawable/seekbar_thumb_normal.xml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
|
||||
<size
|
||||
android:height="10dp"
|
||||
android:width="10dp"/>
|
||||
<solid
|
||||
android:color="@color/materialmusic_accent_color"/>
|
||||
<corners
|
||||
android:radius="18dp"/>
|
||||
</shape>
|
||||
8
app/src/main/res/drawable/seekbar_thumb_pressed.xml
Normal file
8
app/src/main/res/drawable/seekbar_thumb_pressed.xml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
|
||||
<size
|
||||
android:height="18dp"
|
||||
android:width="18dp"/>
|
||||
<solid
|
||||
android:color="@color/materialmusic_accent_color"/>
|
||||
</shape>
|
||||
Loading…
Add table
Add a link
Reference in a new issue