Initial commit retro music app
This commit is contained in:
parent
ab332473bc
commit
fe890632fd
932 changed files with 83126 additions and 0 deletions
6
app/src/main/res/drawable/abs_history_playlist.xml
Normal file
6
app/src/main/res/drawable/abs_history_playlist.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<solid android:color="#346EF3" />
|
||||
</shape>
|
6
app/src/main/res/drawable/abs_last_added_playlist.xml
Normal file
6
app/src/main/res/drawable/abs_last_added_playlist.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<solid android:color="#DF2B29" />
|
||||
</shape>
|
5
app/src/main/res/drawable/abs_shuffle.xml
Normal file
5
app/src/main/res/drawable/abs_shuffle.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid android:color="#2E9C42"/>
|
||||
</shape>
|
5
app/src/main/res/drawable/abs_timer.xml
Normal file
5
app/src/main/res/drawable/abs_timer.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid android:color="@color/md_orange_A400" />
|
||||
</shape>
|
6
app/src/main/res/drawable/abs_top_tracks_playlist.xml
Normal file
6
app/src/main/res/drawable/abs_top_tracks_playlist.xml
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
|
||||
<solid android:color="#F8B10C"/>
|
||||
</shape>
|
12
app/src/main/res/drawable/background_image.xml
Normal file
12
app/src/main/res/drawable/background_image.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<gradient
|
||||
android:angle="0"
|
||||
android:centerColor="#80ffffff"
|
||||
android:endColor="@android:color/transparent"
|
||||
android:startColor="@android:color/white"
|
||||
android:type="linear"/>
|
||||
|
||||
</shape>
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners
|
||||
android:topLeftRadius="12dp"
|
||||
android:topRightRadius="12dp" />
|
||||
<padding
|
||||
android:bottom="8dp"
|
||||
android:top="12dp" />
|
||||
<solid android:color="?attr/cardBackgroundColor" />
|
||||
</shape>
|
5
app/src/main/res/drawable/black_overlay.xml
Normal file
5
app/src/main/res/drawable/black_overlay.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="4dp"/>
|
||||
<solid android:color="@color/twenty_percent_black_overlay"/>
|
||||
</shape>
|
44
app/src/main/res/drawable/card.xml
Normal file
44
app/src/main/res/drawable/card.xml
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item>
|
||||
<shape>
|
||||
<padding
|
||||
android:bottom="5dp"
|
||||
android:left="8dp"
|
||||
android:right="8dp"
|
||||
android:top="8dp" />
|
||||
<solid android:color="@android:color/transparent" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<shape>
|
||||
<padding
|
||||
android:bottom="1dp"
|
||||
android:left="0dp"
|
||||
android:right="0dp"
|
||||
android:top="0dp" />
|
||||
<solid android:color="#55d4d4d4" />
|
||||
<corners android:radius="@dimen/card_elevation" />
|
||||
</shape>
|
||||
</item>
|
||||
<item>
|
||||
<shape>
|
||||
<padding
|
||||
android:bottom="1dp"
|
||||
android:left="0dp"
|
||||
android:right="0dp"
|
||||
android:top="0dp" />
|
||||
<solid android:color="#55dddddd" />
|
||||
<corners android:radius="@dimen/card_elevation" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<shape>
|
||||
<solid android:color="@android:color/white" />
|
||||
<corners android:radius="@dimen/card_elevation" />
|
||||
</shape>
|
||||
</item>
|
||||
</layer-list>
|
9
app/src/main/res/drawable/circler_corners.xml
Normal file
9
app/src/main/res/drawable/circler_corners.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="25dp" />
|
||||
<gradient
|
||||
android:angle="135"
|
||||
android:endColor="@color/md_green_A700"
|
||||
android:startColor="@color/md_blue_A200" />
|
||||
</shape>
|
5
app/src/main/res/drawable/color_circle_gradient.xml
Normal file
5
app/src/main/res/drawable/color_circle_gradient.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="oval">
|
||||
<solid android:color="@color/md_green_A700" />
|
||||
</shape>
|
8
app/src/main/res/drawable/color_gradient.xml
Executable file
8
app/src/main/res/drawable/color_gradient.xml
Executable file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<gradient
|
||||
android:angle="90"
|
||||
android:endColor="@android:color/transparent"
|
||||
android:startColor="#80000000"/>
|
||||
</shape>
|
26
app/src/main/res/drawable/color_progress_seek.xml
Executable file
26
app/src/main/res/drawable/color_progress_seek.xml
Executable file
|
@ -0,0 +1,26 @@
|
|||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:id="@android:id/background">
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="5dp" />
|
||||
<solid android:color="@color/md_grey_200" />
|
||||
</shape>
|
||||
</item>
|
||||
|
||||
<item android:id="@android:id/secondaryProgress">
|
||||
<clip>
|
||||
<shape android:shape="rectangle">
|
||||
<corners android:radius="5dp" />
|
||||
<solid android:color="@color/md_grey_200" />
|
||||
</shape>
|
||||
</clip>
|
||||
</item>
|
||||
|
||||
<item android:id="@android:id/progress">
|
||||
<clip>
|
||||
<shape>
|
||||
<solid android:color="@color/md_green_A700" />
|
||||
<corners android:radius="5dp" />
|
||||
</shape>
|
||||
</clip>
|
||||
</item>
|
||||
</layer-list>
|
7
app/src/main/res/drawable/gradient.xml
Normal file
7
app/src/main/res/drawable/gradient.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="90"
|
||||
android:endColor="#FD6A83"
|
||||
android:startColor="#FFA26E"/>
|
||||
</shape>
|
7
app/src/main/res/drawable/gradient_1.xml
Normal file
7
app/src/main/res/drawable/gradient_1.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="135"
|
||||
android:endColor="#209cff"
|
||||
android:startColor="#faaca8"/>
|
||||
</shape>
|
7
app/src/main/res/drawable/gradient_2.xml
Normal file
7
app/src/main/res/drawable/gradient_2.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="135"
|
||||
android:endColor="#b224ef"
|
||||
android:startColor="#7579ff"/>
|
||||
</shape>
|
8
app/src/main/res/drawable/gradient_3.xml
Normal file
8
app/src/main/res/drawable/gradient_3.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="135"
|
||||
android:endColor="@color/md_blue_A400"
|
||||
android:startColor="@color/md_deep_purple_A700" />
|
||||
|
||||
</shape>
|
7
app/src/main/res/drawable/gradient_4.xml
Normal file
7
app/src/main/res/drawable/gradient_4.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="135"
|
||||
android:endColor="#0acffe"
|
||||
android:startColor="#495aff"/>
|
||||
</shape>
|
7
app/src/main/res/drawable/gradient_5.xml
Normal file
7
app/src/main/res/drawable/gradient_5.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="135"
|
||||
android:endColor="@color/md_green_A700"
|
||||
android:startColor="@color/md_blue_A200"/>
|
||||
</shape>
|
7
app/src/main/res/drawable/gradient_6.xml
Normal file
7
app/src/main/res/drawable/gradient_6.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="135"
|
||||
android:endColor="@color/md_indigo_500"
|
||||
android:startColor="@color/md_blue_500" />
|
||||
</shape>
|
7
app/src/main/res/drawable/gradient_7.xml
Normal file
7
app/src/main/res/drawable/gradient_7.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="135"
|
||||
android:endColor="@color/md_cyan_500"
|
||||
android:startColor="@color/md_light_blue_500" />
|
||||
</shape>
|
7
app/src/main/res/drawable/gradient_8.xml
Normal file
7
app/src/main/res/drawable/gradient_8.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="135"
|
||||
android:endColor="@color/md_red_500"
|
||||
android:startColor="@color/md_pink_500" />
|
||||
</shape>
|
BIN
app/src/main/res/drawable/hemanth_s.webp
Normal file
BIN
app/src/main/res/drawable/hemanth_s.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
7
app/src/main/res/drawable/holiday_background.xml
Normal file
7
app/src/main/res/drawable/holiday_background.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="90"
|
||||
android:endColor="@color/md_red_A700"
|
||||
android:startColor="@color/md_red_A100" />
|
||||
</shape>
|
15
app/src/main/res/drawable/ic_access_time_white_24dp.xml
Normal file
15
app/src/main/res/drawable/ic_access_time_white_24dp.xml
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M11.99,2C6.47,2,2,6.48,2,12c0,5.52,4.47,10,9.99,10C17.52,22,22,17.52,22,12C22,6.48,17.52,2,11.99,2z M12,20 c-4.42,0-8-3.58-8-8c0-4.42,3.58-8,8-8s8,3.58,8,8C20,16.42,16.42,20,12,20z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M11.78,7h-0.06C11.32,7,11,7.32,11,7.72v4.72c0,0.35,0.18,0.68,0.49,0.86l4.15,2.49c0.34,0.2,0.78,0.1,0.98-0.24v0 c0.21-0.34,0.1-0.79-0.25-0.99l-3.87-2.3V7.72C12.5,7.32,12.18,7,11.78,7z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_album_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_album_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,16.5c-2.49,0-4.5-2.01-4.5-4.5S9.51,7.5,12,7.5 s4.5,2.01,4.5,4.5S14.49,16.5,12,16.5z M12,11c-0.55,0-1,0.45-1,1s0.45,1,1,1s1-0.45,1-1S12.55,11,12,11z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_app_icon_with_shadow.xml
Normal file
9
app/src/main/res/drawable/ic_app_icon_with_shadow.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector android:height="24dp" android:viewportHeight="108"
|
||||
android:viewportWidth="108" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillAlpha="0.1" android:fillColor="#FF000000"
|
||||
android:pathData="M42,69.53 L90,108h18V68.55L66,36c-2.58,0.91 -6,2.6 -8,5.92C54.8,47.18 57.91,52 56,57.7 54.84,61.14 51.65,65.74 42,69.53Z" android:strokeAlpha="0.1"/>
|
||||
<path android:fillColor="#fff" android:pathData="M53.91,39.64h0V58.38c-0.32,-0.18 -0.66,-0.33 -1,-0.48A9,9 0,0 1,57.05 70a10.88,10.88 0,0 0,1.43 -4.39V45H53.91Z"/>
|
||||
<path android:fillColor="#fff" android:pathData="M52.91,57.9A9,9 0,1 0,58 66,9 9,0 0,0 52.91,57.9Z"/>
|
||||
<path android:fillColor="#fff" android:pathData="M54.16,36.35h12.19v8.43h-12.19z"/>
|
||||
<path android:fillColor="#fff" android:pathData="M66.1,36.6v7.93H54.41V36.6H66.1m0.5,-0.5H53.91V45H66.6V36.1Z"/>
|
||||
</vector>
|
18
app/src/main/res/drawable/ic_app_shortcut_background.xml
Normal file
18
app/src/main/res/drawable/ic_app_shortcut_background.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="176dp"
|
||||
android:height="176dp"
|
||||
android:viewportHeight="176"
|
||||
android:viewportWidth="176">
|
||||
|
||||
<group
|
||||
android:pivotX="88"
|
||||
android:pivotY="88"
|
||||
android:scaleX="0.916"
|
||||
android:scaleY="0.916">
|
||||
<path
|
||||
android:name="ic_app_shortcut_background"
|
||||
android:fillColor="#000"
|
||||
android:pathData="M 88 0 C 136.601057985 0 176 39.3989420149 176 88 C 176 136.601057985 136.601057985 176 88 176 C 39.3989420149 176 0 136.601057985 0 88 C 0 39.3989420149 39.3989420149 0 88 0 Z" />
|
||||
</group>
|
||||
</vector>
|
20
app/src/main/res/drawable/ic_app_shortcut_last_added.xml
Normal file
20
app/src/main/res/drawable/ic_app_shortcut_last_added.xml
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="176dp"
|
||||
android:height="176dp"
|
||||
android:viewportHeight="176"
|
||||
android:viewportWidth="176">
|
||||
|
||||
<group
|
||||
android:pivotX="88"
|
||||
android:pivotY="88"
|
||||
android:scaleX="0.916"
|
||||
android:scaleY="0.916"
|
||||
android:translateX="-8"
|
||||
android:translateY="-8">
|
||||
<path
|
||||
android:name="ic_app_shortcut_last_added_ic"
|
||||
android:fillColor="#000"
|
||||
android:pathData="M124.35,92h-16.2v16.2h-8.1V92H83.85v-8.1h16.2V67.65h8.1v16.2h16.2M128.4,55.5H79.8a8.1,8.1,0,0,0-8.1,8.1v48.6a8.1,8.1,0,0,0,8.1,8.1h48.6a8.1,8.1,0,0,0,8.1-8.1V63.6a8.1,8.1,0,0,0-8.1-8.1M63.6,71.7H55.5v56.7a8.1,8.1,0,0,0,8.1,8.1h56.7v-8.1H63.6Z" />
|
||||
</group>
|
||||
</vector>
|
20
app/src/main/res/drawable/ic_app_shortcut_shuffle_all.xml
Normal file
20
app/src/main/res/drawable/ic_app_shortcut_shuffle_all.xml
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="176dp"
|
||||
android:height="176dp"
|
||||
android:viewportHeight="176"
|
||||
android:viewportWidth="176">
|
||||
|
||||
<group
|
||||
android:pivotX="88"
|
||||
android:pivotY="88"
|
||||
android:scaleX="0.916"
|
||||
android:scaleY="0.916"
|
||||
android:translateX="-8"
|
||||
android:translateY="-8">
|
||||
<path
|
||||
android:name="ic_app_shortcut_shuffle_ic"
|
||||
android:fillColor="#000"
|
||||
android:pathData="M110.15,103l-7,7,15.65,15.65L108.5,136H136V108.5l-10.2,10.2L110.15,103M108.5,56l10.2,10.2L56,128.95l7,7L125.8,73.3,136,83.5V56M89,81.85,63.05,56l-7,7L81.85,88.9Z" />
|
||||
</group>
|
||||
</vector>
|
20
app/src/main/res/drawable/ic_app_shortcut_top_tracks.xml
Normal file
20
app/src/main/res/drawable/ic_app_shortcut_top_tracks.xml
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="176dp"
|
||||
android:height="176dp"
|
||||
android:viewportHeight="176"
|
||||
android:viewportWidth="176">
|
||||
|
||||
<group
|
||||
android:pivotX="88"
|
||||
android:pivotY="88"
|
||||
android:scaleX="0.916"
|
||||
android:scaleY="0.916"
|
||||
android:translateX="-8"
|
||||
android:translateY="-8">
|
||||
<path
|
||||
android:name="ic_app_shortcut_top_tracks_ic"
|
||||
android:fillColor="#000"
|
||||
android:pathData="M113.7,69.45l10.13,10.13-21.59,21.59-17.7-17.7L51.75,116.31,58,122.55,84.54,96l17.7,17.7,27.88-27.83L140.25,96V69.45Z" />
|
||||
</group>
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_arrow_forward_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_arrow_forward_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M5,13h11.17l-4.88,4.88c-0.39,0.39-0.39,1.03,0,1.42l0,0c0.39,0.39,1.02,0.39,1.41,0l6.59-6.59c0.39-0.39,0.39-1.02,0-1.41 L12.71,4.7c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41L16.17,11H5c-0.55,0-1,0.45-1,1v0C4,12.55,4.45,13,5,13z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_artist_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_artist_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M11,14C12,14 13.05,14.16 14.2,14.44C13.39,15.31 13,16.33 13,17.5C13,18.39 13.25,19.23 13.78,20H3V18C3,16.81 3.91,15.85 5.74,15.12C7.57,14.38 9.33,14 11,14M18.5,10H22V12H20V17.5C20,18.17 19.77,18.77 19.27,19.27C18.77,19.77 18.17,20 17.5,20C16.8,20 16.21,19.77 15.73,19.27C15.24,18.77 15,18.17 15,17.5C15,16.8 15.24,16.21 15.73,15.73C16.21,15.24 16.8,15 17.5,15C17.8,15 18.14,15.08 18.5,15.23V10M11,12C9.92,12 9,11.61 8.18,10.83C7.38,10.05 7,9.11 7,8C7,6.92 7.38,6 8.18,5.18C9,4.38 9.92,4 11,4C12.11,4 13.05,4.38 13.83,5.18C14.61,6 15,6.92 15,8C15,9.11 14.61,10.05 13.83,10.83C13.05,11.61 12.11,12 11,12Z" />
|
||||
</vector>
|
16
app/src/main/res/drawable/ic_audio_tag_square.xml
Normal file
16
app/src/main/res/drawable/ic_audio_tag_square.xml
Normal file
|
@ -0,0 +1,16 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="256dp"
|
||||
android:height="256dp"
|
||||
android:viewportWidth="256"
|
||||
android:viewportHeight="256">
|
||||
<path
|
||||
android:pathData="m0,0 l0,256 256,0 0,-256 -256,0zM128,64 L176,64 176,80 144,80 144,160a32,32 0,0 1,-32 32,32 32,0 0,1 -32,-32 32,32 0,0 1,32 -32,32 32,0 0,1 16,4.313l0,-52.313 0,-16z"
|
||||
android:strokeAlpha="1"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#ffffff"
|
||||
android:strokeColor="#00000000"
|
||||
android:fillType="evenOdd"
|
||||
android:fillAlpha="1"
|
||||
android:strokeLineCap="round"/>
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_audiotrack_black_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_audiotrack_black_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M12,5v8.55c-0.94-0.54-2.1-0.75-3.33-0.32C7.33,13.71,6.3,14.9,6.06,16.3c-0.46,2.74,1.86,5.08,4.59,4.65 c1.96-0.31,3.35-2.11,3.35-4.1L14,7h2c1.1,0,2-0.9,2-2v0c0-1.1-0.9-2-2-2h-2C12.9,3,12,3.9,12,5z" />
|
||||
</vector>
|
24
app/src/main/res/drawable/ic_beer_white_24dp.xml
Normal file
24
app/src/main/res/drawable/ic_beer_white_24dp.xml
Normal file
|
@ -0,0 +1,24 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="512.0"
|
||||
android:viewportWidth="512.0">
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M418.9,174.5h-23.3c-12.8,0 -23.3,-10.5 -23.3,-23.3c0,-7 -4.7,-11.6 -11.6,-11.6h-128c-7,0 -11.6,4.7 -11.6,11.6c0,7 4.7,11.6 11.6,11.6h116.4v232.7c0,7 4.7,11.6 11.6,11.6s11.6,-4.7 11.6,-11.6V221.1c0,-12.8 10.5,-23.3 23.3,-23.3h23.3c7,0 11.6,4.7 11.6,11.6v139.6c0,7 -4.7,11.6 -11.6,11.6h-11.6c-7,0 -11.6,4.7 -11.6,11.6S400.3,384 407.3,384h11.6c19.8,0 34.9,-15.1 34.9,-34.9V209.5C453.8,189.7 438.7,174.5 418.9,174.5z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M374.7,439.9c-1.2,-1.2 -1.2,-1.2 -1.2,-2.3c-2.3,-4.7 -5.8,-7 -10.5,-7H128c-7,0 -11.6,4.7 -11.6,11.6s4.7,11.6 11.6,11.6h228.1c1.2,1.2 1.2,1.2 2.3,2.3s2.3,3.5 2.3,5.8v15.1c0,7 -4.7,11.6 -11.6,11.6h-256c-7,0 -11.6,-4.7 -11.6,-11.6v-15.1c0,-2.3 1.2,-4.7 2.3,-5.8c5.8,-5.8 9.3,-14 9.3,-22.1V151.3c0,-7 -4.7,-11.6 -11.6,-11.6s-11.6,4.7 -11.6,11.6v282.8c0,2.3 -1.2,4.7 -2.3,5.8c-5.8,5.8 -9.3,14 -9.3,22.1v15.1c0,19.8 15.1,34.9 34.9,34.9h256C368.9,512 384,496.9 384,477.1v-15.1C384,453.8 380.5,445.7 374.7,439.9z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M381.7,72.1c-3.5,-17.5 -18.6,-32.6 -36.1,-36.1s-34.9,3.5 -45.4,16.3c-4.7,-2.3 -9.3,-4.7 -14,-4.7C278.1,19.8 251.3,0 221.1,0c-29.1,0 -53.5,17.5 -64,43.1c-8.1,-4.7 -18.6,-8.1 -27.9,-8.1c-14,0 -27.9,5.8 -38.4,16.3c-23.3,23.3 -22.1,41.9 -18.6,55.9c1.2,5.8 5.8,9.3 10.5,9.3h33.7c7,0 11.6,4.7 11.6,11.6v81.5c0,19.8 15.1,34.9 34.9,34.9c19.8,0 34.9,-15.1 34.9,-34.9V128c0,-7 4.7,-11.6 11.6,-11.6h153.6c3.5,0 7,-1.2 8.1,-3.5C381.7,101.2 385.2,86.1 381.7,72.1zM357.2,91.9H209.5c-19.8,0 -34.9,15.1 -34.9,34.9v81.5c0,7 -4.7,11.6 -11.6,11.6c-7,0 -11.6,-4.7 -11.6,-11.6v-81.5c0,-19.8 -15.1,-34.9 -34.9,-34.9H93.1c0,-5.8 3.5,-14 14,-24.4c5.8,-5.8 14,-9.3 22.1,-9.3c10.5,0 19.8,4.7 25.6,12.8c3.5,3.5 8.1,4.7 12.8,3.5c3.5,-1.2 7,-4.7 7,-9.3c3.5,-24.4 23.3,-41.9 46.5,-41.9c22.1,0 40.7,15.1 45.4,37.2c1.2,5.8 7,9.3 11.6,9.3c1.2,0 1.2,0 1.2,0c7,0 12.8,2.3 17.5,7c2.3,3.5 5.8,4.7 10.5,3.5c3.5,-1.2 7,-3.5 8.1,-7c3.5,-9.3 12.8,-17.5 26.8,-15.1c8.1,1.2 16.3,9.3 17.5,17.5C360.7,82.6 359.6,88.4 357.2,91.9z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M221.1,197.8c-7,0 -11.6,4.7 -11.6,11.6V384c0,7 4.7,11.6 11.6,11.6c7,0 11.6,-4.7 11.6,-11.6V209.5C232.7,202.5 228.1,197.8 221.1,197.8z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M290.9,197.8c-7,0 -11.6,4.7 -11.6,11.6V384c0,7 4.7,11.6 11.6,11.6s11.6,-4.7 11.6,-11.6V209.5C302.5,202.5 297.9,197.8 290.9,197.8z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M151.3,267.6c-7,0 -11.6,4.7 -11.6,11.6V384c0,7 4.7,11.6 11.6,11.6c7,0 11.6,-4.7 11.6,-11.6V279.3C162.9,272.3 158.3,267.6 151.3,267.6z" />
|
||||
</vector>
|
10
app/src/main/res/drawable/ic_bookmark_music_white_24dp.xml
Normal file
10
app/src/main/res/drawable/ic_bookmark_music_white_24dp.xml
Normal file
|
@ -0,0 +1,10 @@
|
|||
<!-- drawable/ic_bookmark_music_white_24dp.xmlwhite_24dp.xml -->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M17,3A2,2 0 0,1 19,5V21L12,18L5,21V5C5,3.89 5.9,3 7,3H17M11,11A2,2 0 0,0 9,13A2,2 0 0,0 11,15A2,2 0 0,0 13,13V8H16V6H12V11.27C11.71,11.1 11.36,11 11,11Z" />
|
||||
</vector>
|
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M20,6h-2.18C17.93,5.69 18,5.35 18,5c0,-1.66 -1.34,-3 -3,-3c-1.05,0 -1.96,0.54 -2.5,1.35L12,4.02l-0.5,-0.68C10.96,2.54 10.05,2 9,2C7.34,2 6,3.34 6,5c0,0.35 0.07,0.69 0.18,1H4C2.89,6 2.01,6.89 2.01,8L2,19c0,1.11 0.89,2 2,2h16c1.11,0 2,-0.89 2,-2V8C22,6.89 21.11,6 20,6zM15,4c0.55,0 1,0.45 1,1s-0.45,1 -1,1s-1,-0.45 -1,-1S14.45,4 15,4zM9,4c0.55,0 1,0.45 1,1S9.55,6 9,6S8,5.55 8,5S8.45,4 9,4zM20,19H4v-2h16V19zM20,14H4V9c0,-0.55 0.45,-1 1,-1h4.08L7.6,10.02c-0.33,0.45 -0.23,1.08 0.22,1.4l0,0c0.44,0.32 1.07,0.22 1.39,-0.22L12,7.4l2.79,3.8c0.32,0.44 0.95,0.54 1.39,0.22l0,0c0.45,-0.32 0.55,-0.95 0.22,-1.4L14.92,8H19c0.55,0 1,0.45 1,1V14z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_close_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_close_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M18.3,5.71L18.3,5.71c-0.39,-0.39 -1.02,-0.39 -1.41,0L12,10.59L7.11,5.7c-0.39,-0.39 -1.02,-0.39 -1.41,0l0,0c-0.39,0.39 -0.39,1.02 0,1.41L10.59,12L5.7,16.89c-0.39,0.39 -0.39,1.02 0,1.41h0c0.39,0.39 1.02,0.39 1.41,0L12,13.41l4.89,4.89c0.39,0.39 1.02,0.39 1.41,0l0,0c0.39,-0.39 0.39,-1.02 0,-1.41L13.41,12l4.89,-4.89C18.68,6.73 18.68,6.09 18.3,5.71z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_cookie_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_cookie_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M12,3A9,9 0,0 0,3 12A9,9 0,0 0,12 21A9,9 0,0 0,21 12C21,11.5 20.96,11 20.87,10.5C20.6,10 20,10 20,10H18V9C18,8 17,8 17,8H15V7C15,6 14,6 14,6H13V4C13,3 12,3 12,3M9.5,6A1.5,1.5 0,0 1,11 7.5A1.5,1.5 0,0 1,9.5 9A1.5,1.5 0,0 1,8 7.5A1.5,1.5 0,0 1,9.5 6M6.5,10A1.5,1.5 0,0 1,8 11.5A1.5,1.5 0,0 1,6.5 13A1.5,1.5 0,0 1,5 11.5A1.5,1.5 0,0 1,6.5 10M11.5,11A1.5,1.5 0,0 1,13 12.5A1.5,1.5 0,0 1,11.5 14A1.5,1.5 0,0 1,10 12.5A1.5,1.5 0,0 1,11.5 11M16.5,13A1.5,1.5 0,0 1,18 14.5A1.5,1.5 0,0 1,16.5 16H16.5A1.5,1.5 0,0 1,15 14.5H15A1.5,1.5 0,0 1,16.5 13M11,16A1.5,1.5 0,0 1,12.5 17.5A1.5,1.5 0,0 1,11 19A1.5,1.5 0,0 1,9.5 17.5A1.5,1.5 0,0 1,11 16Z"/>
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_delete_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_delete_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M6,19c0,1.1 0.9,2 2,2h8c1.1,0 2,-0.9 2,-2V9c0,-1.1 -0.9,-2 -2,-2H8C6.9,7 6,7.9 6,9V19zM18,4h-2.5l-0.71,-0.71C14.61,3.11 14.35,3 14.09,3H9.91C9.65,3 9.39,3.11 9.21,3.29L8.5,4H6C5.45,4 5,4.45 5,5v0c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1v0C19,4.45 18.55,4 18,4z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_discord_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_discord_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M22,24L16.75,19L17.38,21H4.5A2.5,2.5 0 0,1 2,18.5V3.5A2.5,2.5 0 0,1 4.5,1H19.5A2.5,2.5 0 0,1 22,3.5V24M12,6.8C9.32,6.8 7.44,7.95 7.44,7.95C8.47,7.03 10.27,6.5 10.27,6.5L10.1,6.33C8.41,6.36 6.88,7.53 6.88,7.53C5.16,11.12 5.27,14.22 5.27,14.22C6.67,16.03 8.75,15.9 8.75,15.9L9.46,15C8.21,14.73 7.42,13.62 7.42,13.62C7.42,13.62 9.3,14.9 12,14.9C14.7,14.9 16.58,13.62 16.58,13.62C16.58,13.62 15.79,14.73 14.54,15L15.25,15.9C15.25,15.9 17.33,16.03 18.73,14.22C18.73,14.22 18.84,11.12 17.12,7.53C17.12,7.53 15.59,6.36 13.9,6.33L13.73,6.5C13.73,6.5 15.53,7.03 16.56,7.95C16.56,7.95 14.68,6.8 12,6.8M9.93,10.59C10.58,10.59 11.11,11.16 11.1,11.86C11.1,12.55 10.58,13.13 9.93,13.13C9.29,13.13 8.77,12.55 8.77,11.86C8.77,11.16 9.28,10.59 9.93,10.59M14.1,10.59C14.75,10.59 15.27,11.16 15.27,11.86C15.27,12.55 14.75,13.13 14.1,13.13C13.46,13.13 12.94,12.55 12.94,11.86C12.94,11.16 13.45,10.59 14.1,10.59Z" />
|
||||
</vector>
|
24
app/src/main/res/drawable/ic_drag_vertical_white_24dp.xml
Executable file
24
app/src/main/res/drawable/ic_drag_vertical_white_24dp.xml
Executable file
|
@ -0,0 +1,24 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M11,18c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S11,16.9,11,18z M9,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S10.1,10,9,10z M9,4C7.9,4,7,4.9,7,6s0.9,2,2,2s2-0.9,2-2S10.1,4,9,4z M15,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S13.9,8,15,8z M15,10 c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,16c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,16,15,16z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M11,18c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S11,16.9,11,18z M9,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2 S10.1,10,9,10z M9,4C7.9,4,7,4.9,7,6s0.9,2,2,2s2-0.9,2-2S10.1,4,9,4z M15,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S13.9,8,15,8z M15,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,16c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,16,15,16z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M11,18c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S11,16.9,11,18z M9,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2 S10.1,10,9,10z M9,4C7.9,4,7,4.9,7,6s0.9,2,2,2s2-0.9,2-2S10.1,4,9,4z M15,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S13.9,8,15,8z M15,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,16c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,16,15,16z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M11,18c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S11,16.9,11,18z M9,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2 S10.1,10,9,10z M9,4C7.9,4,7,4.9,7,6s0.9,2,2,2s2-0.9,2-2S10.1,4,9,4z M15,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S13.9,8,15,8z M15,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,16c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,16,15,16z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M11,18c0,1.1-0.9,2-2,2s-2-0.9-2-2s0.9-2,2-2S11,16.9,11,18z M9,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2 S10.1,10,9,10z M9,4C7.9,4,7,4.9,7,6s0.9,2,2,2s2-0.9,2-2S10.1,4,9,4z M15,8c1.1,0,2-0.9,2-2s-0.9-2-2-2s-2,0.9-2,2S13.9,8,15,8z M15,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,10,15,10z M15,16c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S16.1,16,15,16z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_edit_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_edit_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M3,17.46v3.04C3,20.78 3.22,21 3.5,21h3.04c0.13,0 0.26,-0.05 0.35,-0.15L17.81,9.94l-3.75,-3.75L3.15,17.1C3.05,17.2 3,17.32 3,17.46zM20.71,7.04c0.39,-0.39 0.39,-1.02 0,-1.41l-2.34,-2.34c-0.39,-0.39 -1.02,-0.39 -1.41,0l-1.83,1.83l3.75,3.75L20.71,7.04z"/>
|
||||
</vector>
|
8
app/src/main/res/drawable/ic_facebook.xml
Normal file
8
app/src/main/res/drawable/ic_facebook.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<!-- drawable/facebook.xml -->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:height="24dp"
|
||||
android:width="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path android:fillColor="#000" android:pathData="M17,2V2H17V6H15C14.31,6 14,6.81 14,7.5V10H14L17,10V14H14V22H10V14H7V10H10V6A4,4 0 0,1 14,2H17Z" />
|
||||
</vector>
|
30
app/src/main/res/drawable/ic_fast_food_meal_white_24dp.xml
Normal file
30
app/src/main/res/drawable/ic_fast_food_meal_white_24dp.xml
Normal file
|
@ -0,0 +1,30 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="496.0"
|
||||
android:viewportWidth="496.0">
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M472,272V168c0,-13.2 -10.8,-24 -24,-24h-16c-6.2,0 -11.7,2.4 -16,6.2c-4.3,-3.8 -9.8,-6.2 -16,-6.2h-16c-6.2,0 -11.7,2.4 -16,6.2c-4.3,-3.8 -9.8,-6.2 -16,-6.2h-16c-13.2,0 -24,10.8 -24,24v102.7c-18.5,-12.8 -45.4,-23.7 -84.8,-28.3l12.6,-88.2c0.2,-1.1 0.2,-2.1 0.2,-3.2C240,138.3 229.7,128 217.1,128H144V56c0,-4.4 3.6,-8 8,-8h64c13.2,0 24,-10.8 24,-24S229.2,0 216,0h-72c-26.5,0 -48,21.5 -48,48v80H22.9C10.3,128 0,138.3 0,150.9c0,1.1 0.1,2.2 0.2,3.2l19.3,134.9C0.5,311.8 0,334.1 0,336c0,14 9,25.7 21.5,30.1C18,371.2 16,377.4 16,384c0,8.5 3.4,16.2 8.9,22C10.1,414.2 0,429.9 0,448c0,26.5 21.5,48 48,48h240h16h192V328v-8v-24C496,282.8 485.2,272 472,272zM424,168c0,-4.4 3.6,-8 8,-8h16c4.4,0 8,3.6 8,8v104h-32V168zM376,168c0,-4.4 3.6,-8 8,-8h16c4.4,0 8,3.6 8,8v104h-32V168zM328,168c0,-4.4 3.6,-8 8,-8h16c4.4,0 8,3.6 8,8v104h-32V168zM200,16h16c4.4,0 8,3.6 8,8s-3.6,8 -8,8h-16V16zM168,16h16v16h-16V16zM112,48c0,-17.6 14.4,-32 32,-32h8v16c-13.2,0 -24,10.8 -24,24v72h-16V48zM17.2,160l-1.2,-8.1c-0,-0.3 -0.1,-0.7 -0.1,-1c0,-3.8 3.1,-6.9 6.9,-6.9H96h48h73.1c3.8,0 6.9,3.1 6.9,6.9c0,0.3 -0,0.7 -0.1,1l-1.2,8.1H200v16h20.5l-4.6,32H24.1l-4.6,-32H184v-16H17.2zM213.6,224l-2.4,16.9C202.7,240.3 193.6,240 184,240h-16c-69.7,0 -110.4,16.2 -134.3,35.4L26.4,224H213.6zM16,336c0,-0.8 1.7,-80 152,-80h16c149.2,0 152,76.8 152,80c0,8.8 -7.2,16 -16,16h-8h-8H48H32C23.2,352 16,344.8 16,336zM48,400c-8.8,0 -16,-7.2 -16,-16c0,-8.8 7.2,-16 16,-16h256c8.8,0 16,7.2 16,16c0,8.8 -7.2,16 -16,16H48zM270.6,416l-32.8,38.3L150.2,416H270.6zM304,480h-16H48c-17.6,0 -32,-14.4 -32,-32s14.4,-32 32,-32h62.3l131.9,57.7L291.7,416H304c17.6,0 32,14.4 32,32S321.6,480 304,480zM327.2,406C332.6,400.2 336,392.5 336,384c0,-5.9 -1.7,-11.3 -4.4,-16H448v80h-96c0,-5.6 -1,-11 -2.8,-16H400v-16h-60.3C336.1,412 331.9,408.6 327.2,406zM480,320h-16v16h16v144H339.7c4.2,-4.6 7.4,-10 9.5,-16H464V352H347.6c2.8,-4.7 4.4,-10.1 4.4,-16h96v-16h-98.7c-2.6,-8.9 -7.7,-20.4 -17.8,-32H472c4.4,0 8,3.6 8,8V320z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M416,416h16v16h-16z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M104,272h16v16h-16z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M136,288h16v16h-16z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M168,272h16v16h-16z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M216,296h16v16h-16z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M256,272h16v16h-16z" />
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M56,304h16v16h-16z" />
|
||||
</vector>
|
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M19.66,3.99c-2.64,-1.8 -5.9,-0.96 -7.66,1.1c-1.76,-2.06 -5.02,-2.91 -7.66,-1.1C2.94,4.95 2.06,6.57 2,8.28c-0.14,3.88 3.3,6.99 8.55,11.76l0.1,0.09c0.76,0.69 1.93,0.69 2.69,-0.01l0.11,-0.1c5.25,-4.76 8.68,-7.87 8.55,-11.75C21.94,6.57 21.06,4.95 19.66,3.99zM12.1,18.55l-0.1,0.1l-0.1,-0.1C7.14,14.24 4,11.39 4,8.5C4,6.5 5.5,5 7.5,5c1.54,0 3.04,0.99 3.57,2.36h1.87C13.46,5.99 14.96,5 16.5,5c2,0 3.5,1.5 3.5,3.5C20,11.39 16.86,14.24 12.1,18.55z"/>
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_favorite_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_favorite_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M13.35,20.13c-0.76,0.69 -1.93,0.69 -2.69,-0.01l-0.11,-0.1C5.3,15.27 1.87,12.16 2,8.28c0.06,-1.7 0.93,-3.33 2.34,-4.29c2.64,-1.8 5.9,-0.96 7.66,1.1c1.76,-2.06 5.02,-2.91 7.66,-1.1c1.41,0.96 2.28,2.59 2.34,4.29c0.14,3.88 -3.3,6.99 -8.55,11.76L13.35,20.13z"/>
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_file_music_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_file_music_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M13,9H18.5L13,3.5V9M6,2H14L20,8V20A2,2 0 0,1 18,22H6C4.89,22 4,21.1 4,20V4C4,2.89 4.89,2 6,2M9,16A2,2 0 0,0 7,18A2,2 0 0,0 9,20A2,2 0 0,0 11,18V13H14V11H10V16.27C9.71,16.1 9.36,16 9,16Z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_flag_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_flag_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M14.4,6l-0.24,-1.2C14.07,4.34 13.66,4 13.18,4H6C5.45,4 5,4.45 5,5v15c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-6h5.6l0.24,1.2c0.09,0.47 0.5,0.8 0.98,0.8H19c0.55,0 1,-0.45 1,-1V7c0,-0.55 -0.45,-1 -1,-1H14.4z"/>
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_folder_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_folder_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M10.59,4.59C10.21,4.21 9.7,4 9.17,4H4C2.9,4 2.01,4.9 2.01,6L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2V8c0,-1.1 -0.9,-2 -2,-2h-8L10.59,4.59z"/>
|
||||
</vector>
|
13
app/src/main/res/drawable/ic_format_color_fill.xml
Normal file
13
app/src/main/res/drawable/ic_format_color_fill.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M16.56,8.94L8.32,0.7c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l1.68,1.68L3.44,8.94 c-0.59,0.59-0.59,1.54,0,2.12l5.5,5.5C9.23,16.85,9.62,17,10,17s0.77-0.15,1.06-0.44l5.5-5.5C17.15,10.48,17.15,9.53,16.56,8.94z M5.21,10L10,5.21L14.79,10H5.21z M19,11.5c0,0-2,2.17-2,3.5c0,1.1,0.9,2,2,2s2-0.9,2-2C21,13.67,19,11.5,19,11.5z" />
|
||||
|
||||
</vector>
|
10
app/src/main/res/drawable/ic_github_circle_white_24dp.xml
Normal file
10
app/src/main/res/drawable/ic_github_circle_white_24dp.xml
Normal file
|
@ -0,0 +1,10 @@
|
|||
<!-- drawable/ic_github_circlecle.xml -->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
|
||||
</vector>
|
|
@ -0,0 +1,10 @@
|
|||
<!-- drawable/ic_google_circles_communities_white_24dp.xmlxml -->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M15,12C13.89,12 13,12.89 13,14A2,2 0 0,0 15,16A2,2 0 0,0 17,14C17,12.89 16.1,12 15,12M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M14,9C14,7.89 13.1,7 12,7C10.89,7 10,7.89 10,9A2,2 0 0,0 12,11A2,2 0 0,0 14,9M9,12A2,2 0 0,0 7,14A2,2 0 0,0 9,16A2,2 0 0,0 11,14C11,12.89 10.1,12 9,12Z" />
|
||||
</vector>
|
10
app/src/main/res/drawable/ic_google_plus_white_24dp.xml
Normal file
10
app/src/main/res/drawable/ic_google_plus_white_24dp.xml
Normal file
|
@ -0,0 +1,10 @@
|
|||
<!-- drawable/ic_google_pluslus.xml -->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M23,11H21V9H19V11H17V13H19V15H21V13H23M8,11V13.4H12C11.8,14.4 10.8,16.4 8,16.4C5.6,16.4 3.7,14.4 3.7,12C3.7,9.6 5.6,7.6 8,7.6C9.4,7.6 10.3,8.2 10.8,8.7L12.7,6.9C11.5,5.7 9.9,5 8,5C4.1,5 1,8.1 1,12C1,15.9 4.1,19 8,19C12,19 14.7,16.2 14.7,12.2C14.7,11.7 14.7,11.4 14.6,11H8Z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_hdr_strong_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_hdr_strong_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M17,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6s6,-2.69 6,-6S20.31,6 17,6zM5,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4s4,-1.79 4,-4S7.21,8 5,8zM5,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2s2,0.9 2,2S6.1,14 5,14z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_help_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_help_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M12,2C6.48,2 2,6.48 2,12c0,5.52 4.48,10 10,10s10,-4.48 10,-10C22,6.48 17.52,2 12,2zM13,19h-2v-2h2V19zM15.07,11.25l-0.9,0.92c-0.5,0.51 -0.86,0.97 -1.04,1.69C13.05,14.18 13,14.54 13,15h-2v-0.5c0,-0.46 0.08,-0.9 0.22,-1.31c0.2,-0.58 0.53,-1.1 0.95,-1.52l1.24,-1.26c0.46,-0.44 0.68,-1.1 0.55,-1.8c-0.13,-0.72 -0.69,-1.33 -1.39,-1.53c-1.11,-0.31 -2.14,0.32 -2.47,1.27C9.98,8.72 9.67,9 9.28,9H8.98C8.4,9 8,8.44 8.16,7.88c0.43,-1.47 1.68,-2.59 3.23,-2.83c1.52,-0.24 2.97,0.55 3.87,1.8C16.44,8.48 16.09,10.23 15.07,11.25z"/>
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_home_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_home_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M10,19v-5h4v5c0,0.55 0.45,1 1,1h3c0.55,0 1,-0.45 1,-1v-7h1.7c0.46,0 0.68,-0.57 0.33,-0.87L12.67,3.6c-0.38,-0.34 -0.96,-0.34 -1.34,0l-8.36,7.53C2.63,11.43 2.84,12 3.3,12H5v7c0,0.55 0.45,1 1,1h3C9.55,20 10,19.55 10,19z"/>
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_image_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_image_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M21,19V5c0,-1.1 -0.9,-2 -2,-2H5C3.9,3 3,3.9 3,5v14c0,1.1 0.9,2 2,2h14C20.1,21 21,20.1 21,19zM8.9,13.98l2.1,2.53l3.1,-3.99c0.2,-0.26 0.6,-0.26 0.8,0.01l3.51,4.68c0.25,0.33 0.01,0.8 -0.4,0.8H6.02c-0.42,0 -0.65,-0.48 -0.39,-0.81l2.49,-3.2C8.31,13.74 8.69,13.73 8.9,13.98z"/>
|
||||
</vector>
|
8
app/src/main/res/drawable/ic_instagram.xml
Normal file
8
app/src/main/res/drawable/ic_instagram.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<!-- drawable/instagram.xml -->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:height="24dp"
|
||||
android:width="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path android:fillColor="#000" android:pathData="M7.8,2H16.2C19.4,2 22,4.6 22,7.8V16.2A5.8,5.8 0 0,1 16.2,22H7.8C4.6,22 2,19.4 2,16.2V7.8A5.8,5.8 0 0,1 7.8,2M7.6,4A3.6,3.6 0 0,0 4,7.6V16.4C4,18.39 5.61,20 7.6,20H16.4A3.6,3.6 0 0,0 20,16.4V7.6C20,5.61 18.39,4 16.4,4H7.6M17.25,5.5A1.25,1.25 0 0,1 18.5,6.75A1.25,1.25 0 0,1 17.25,8A1.25,1.25 0 0,1 16,6.75A1.25,1.25 0 0,1 17.25,5.5M12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9Z" />
|
||||
</vector>
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M8.12,9.29L12,13.17l3.88-3.88c0.39-0.39,1.02-0.39,1.41,0l0,0c0.39,0.39,0.39,1.02,0,1.41l-4.59,4.59 c-0.39,0.39-1.02,0.39-1.41,0l-4.59-4.59c-0.39-0.39-0.39-1.02,0-1.41l0,0C7.09,8.91,7.73,8.9,8.12,9.29z" />
|
||||
</vector>
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M9.29,15.88L13.17,12L9.29,8.12c-0.39-0.39-0.39-1.02,0-1.41l0,0c0.39-0.39,1.02-0.39,1.41,0l4.59,4.59 c0.39,0.39,0.39,1.02,0,1.41l-4.59,4.59c-0.39,0.39-1.02,0.39-1.41,0l0,0C8.91,16.91,8.9,16.27,9.29,15.88z" />
|
||||
</vector>
|
13
app/src/main/res/drawable/ic_keyboard_arrow_up_24dp.xml
Executable file
13
app/src/main/res/drawable/ic_keyboard_arrow_up_24dp.xml
Executable file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M8.12,14.71L12,10.83l3.88,3.88c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41l-4.59-4.59 c-0.39-0.39-1.02-0.39-1.41,0l-4.59,4.59c-0.39,0.39-0.39,1.02,0,1.41l0,0C7.09,15.09,7.73,15.1,8.12,14.71z" />
|
||||
</vector>
|
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M20,11H6.83l2.88-2.88c0.39-0.39,0.39-1.02,0-1.41l0,0c-0.39-0.39-1.02-0.39-1.41,0l-4.59,4.59 c-0.39,0.39-0.39,1.02,0,1.41l4.59,4.59c0.39,0.39,1.02,0.39,1.41,0l0,0c0.39-0.39,0.39-1.02,0-1.41L6.83,13H20c0.55,0,1-0.45,1-1 v0C21,11.45,20.55,11,20,11z" />
|
||||
</vector>
|
8
app/src/main/res/drawable/ic_launcher_background.xml
Normal file
8
app/src/main/res/drawable/ic_launcher_background.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<gradient
|
||||
android:angle="135"
|
||||
android:centerColor="#6945FF"
|
||||
android:endColor="#EC3C59"
|
||||
android:startColor="#3393FA"/>
|
||||
</shape>
|
14
app/src/main/res/drawable/ic_launcher_foreground.xml
Normal file
14
app/src/main/res/drawable/ic_launcher_foreground.xml
Normal file
|
@ -0,0 +1,14 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="108dp"
|
||||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M44,72l35,36h29V73.8L68,34c-2.74,0.28 -6.49,1.13 -9,4 -3.53,4 -2.09,9.18 -3,15C55.23,57.9 52.58,64.62 44,72Z"
|
||||
android:strokeAlpha="0.1"
|
||||
android:fillAlpha="0.1"/>
|
||||
<path
|
||||
android:pathData="M52.9,34.2V54.57A10.32,10.32 0,0 0,49.6 54a9.9,9.9 0,1 0,9.9 9.9V40.8h8.8V34.2Z"
|
||||
android:fillColor="#fff"/>
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_library_add_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_library_add_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M3,6L3,6C2.45,6 2,6.45 2,7v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5c-0.55,0 -1,-0.45 -1,-1V7C4,6.45 3.55,6 3,6zM20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM18,11h-3v3c0,0.55 -0.45,1 -1,1h0c-0.55,0 -1,-0.45 -1,-1v-3h-3c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h3V6c0,-0.55 0.45,-1 1,-1h0c0.55,0 1,0.45 1,1v3h3c0.55,0 1,0.45 1,1v0C19,10.55 18.55,11 18,11z"/>
|
||||
</vector>
|
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M20,2H8C6.9,2 6,2.9 6,4v12c0,1.1 0.9,2 2,2h12c1.1,0 2,-0.9 2,-2V4C22,2.9 21.1,2 20,2zM17,7h-2l0,5.37c0,1.27 -0.9,2.44 -2.16,2.6c-1.69,0.23 -3.11,-1.25 -2.8,-2.95c0.2,-1.1 1.18,-1.95 2.3,-2.02c0.63,-0.04 1.2,0.16 1.66,0.51V6c0,-0.55 0.45,-1 1,-1h2c0.55,0 1,0.45 1,1v0C18,6.55 17.55,7 17,7zM3,6L3,6C2.45,6 2,6.45 2,7v13c0,1.1 0.9,2 2,2h13c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H5c-0.55,0 -1,-0.45 -1,-1V7C4,6.45 3.55,6 3,6z"/>
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_menu_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_menu_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M4,18h16c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v0C3,17.55,3.45,18,4,18z M4,13h16c0.55,0,1-0.45,1-1 v0c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v0C3,12.55,3.45,13,4,13z M3,7L3,7c0,0.55,0.45,1,1,1h16c0.55,0,1-0.45,1-1v0 c0-0.55-0.45-1-1-1H4C3.45,6,3,6.45,3,7z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_mic_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_mic_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M12,14c1.66,0 3,-1.34 3,-3V5c0,-1.66 -1.34,-3 -3,-3S9,3.34 9,5v6C9,12.66 10.34,14 12,14z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M17.91,11c-0.49,0 -0.9,0.36 -0.98,0.85C16.52,14.2 14.47,16 12,16s-4.52,-1.8 -4.93,-4.15C6.99,11.36 6.58,11 6.09,11h0c-0.61,0 -1.09,0.54 -1,1.14c0.49,3 2.89,5.35 5.91,5.78V20c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1v-2.08c3.02,-0.43 5.42,-2.78 5.91,-5.78C19.01,11.54 18.52,11 17.91,11L17.91,11z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_more_vert_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_more_vert_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24.0"
|
||||
android:viewportWidth="24.0">
|
||||
<path
|
||||
android:fillColor="#FFFFFFFF"
|
||||
android:pathData="M12,8c1.1,0 2,-0.9 2,-2s-0.9,-2 -2,-2 -2,0.9 -2,2 0.9,2 2,2zM12,10c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2zM12,16c-1.1,0 -2,0.9 -2,2s0.9,2 2,2 2,-0.9 2,-2 -0.9,-2 -2,-2z" />
|
||||
</vector>
|
|
@ -0,0 +1,18 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M18,16v-5c0,-3.07 -1.64,-5.64 -4.5,-6.32V4c0,-0.83 -0.68,-1.5 -1.51,-1.5S10.5,3.17 10.5,4v0.68C7.63,5.36 6,7.92 6,11v5l-1.3,1.29C4.07,17.92 4.51,19 5.4,19h13.17c0.89,0 1.34,-1.08 0.71,-1.71L18,16z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M11.99,22c1.1,0 2,-0.9 2,-2h-4C9.99,21.1 10.88,22 11.99,22z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M6.77,4.73C7.19,4.35 7.2,3.7 6.8,3.3l0,0c-0.38,-0.38 -1,-0.39 -1.39,-0.02C3.7,4.84 2.52,6.96 2.14,9.34C2.05,9.95 2.52,10.5 3.14,10.5h0c0.48,0 0.9,-0.35 0.98,-0.83C4.42,7.73 5.38,6 6.77,4.73z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M18.6,3.28c-0.4,-0.37 -1.02,-0.36 -1.4,0.02l0,0c-0.4,0.4 -0.38,1.04 0.03,1.42c1.38,1.27 2.35,3 2.65,4.94c0.07,0.48 0.49,0.83 0.98,0.83c0.61,0 1.09,-0.55 0.99,-1.16C21.47,6.96 20.3,4.85 18.6,3.28z" />
|
||||
</vector>
|
8
app/src/main/res/drawable/ic_patreon.xml
Normal file
8
app/src/main/res/drawable/ic_patreon.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<!-- drawable/patreon.xml -->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:height="24dp"
|
||||
android:width="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path android:fillColor="#000" android:pathData="M14.73,3C18.45,3 21.47,6.03 21.47,9.76C21.47,13.47 18.45,16.5 14.73,16.5C11,16.5 7.97,13.47 7.97,9.76C7.97,6.03 11,3 14.73,3M2.7,21V3H6V21H2.7Z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_pause_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_pause_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/icon_notification_dimen"
|
||||
android:height="@dimen/icon_notification_dimen"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M8,19L8,19c1.1,0,2-0.9,2-2V7c0-1.1-0.9-2-2-2h0C6.9,5,6,5.9,6,7v10C6,18.1,6.9,19,8,19z M14,7v10c0,1.1,0.9,2,2,2h0 c1.1,0,2-0.9,2-2V7c0-1.1-0.9-2-2-2h0C14.9,5,14,5.9,14,7z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_pause_white_big.xml
Normal file
12
app/src/main/res/drawable/ic_pause_white_big.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="64dp"
|
||||
android:height="64dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M8,19L8,19c1.1,0,2-0.9,2-2V7c0-1.1-0.9-2-2-2h0C6.9,5,6,5.9,6,7v10C6,18.1,6.9,19,8,19z M14,7v10c0,1.1,0.9,2,2,2h0 c1.1,0,2-0.9,2-2V7c0-1.1-0.9-2-2-2h0C14.9,5,14,5.9,14,7z" />
|
||||
</vector>
|
42
app/src/main/res/drawable/ic_person_flat.xml
Normal file
42
app/src/main/res/drawable/ic_person_flat.xml
Normal file
|
@ -0,0 +1,42 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="64dp"
|
||||
android:height="64dp"
|
||||
android:viewportHeight="64.0"
|
||||
android:viewportWidth="64.0">
|
||||
<path
|
||||
android:fillColor="#5093FF"
|
||||
android:pathData="M32,0c17.7,0 32,14.3 32,32S49.7,64 32,64S0,49.7 0,32S14.3,0 32,0z"/>
|
||||
<path
|
||||
android:fillColor="#316CFF"
|
||||
android:pathData="M13,64c0,-9.3 8.5,-17 19,-17h0c10.4,0 19,7.7 19,17"/>
|
||||
<path
|
||||
android:fillColor="#FFFFFF"
|
||||
android:pathData="M32,50m-6,0a6,6 0,1 1,12 0a6,6 0,1 1,-12 0"/>
|
||||
<path
|
||||
android:fillColor="#F7BE8F"
|
||||
android:pathData="M36.1,45.3v4.6c0,2.3 -1.9,4.1 -4.1,4.1c-1.1,0 -2.2,-0.5 -2.9,-1.2c-0.7,-0.8 -1.2,-1.8 -1.2,-2.9v-4.6H36.1z"/>
|
||||
<path
|
||||
android:fillColor="#FAD3A1"
|
||||
android:pathData="M36.3,48.3C34.9,48.8 33.5,49 32,49s-2.9,-0.2 -4.3,-0.7L26,47.5c-3.2,-1.8 -5.4,-4.8 -5.9,-8.2C20,38.7 20,38.2 20,37.7c0,-1 0,-3.1 0,-4.9c0,-1.7 0,-9.8 0,-9.8h24c0,0 0,8.1 0,9.8c0,1.8 0,3.8 0,4.9c0,0.5 0,1.1 -0.1,1.6c-0.2,1.5 -0.7,2.8 -1.5,4.1c-1,1.7 -2.5,3.1 -4.4,4.1C37.4,47.8 36.9,48 36.3,48.3z"/>
|
||||
<path
|
||||
android:fillColor="#262647"
|
||||
android:pathData="M26.5,32c0.8,0 1.5,0.7 1.5,1.5c0,0.8 -0.7,1.5 -1.5,1.5c-0.8,0 -1.5,-0.7 -1.5,-1.5C25,32.7 25.7,32 26.5,32z"/>
|
||||
<path
|
||||
android:fillColor="#262647"
|
||||
android:pathData="M36,33.5c0,-0.8 0.7,-1.5 1.5,-1.5c0.8,0 1.5,0.7 1.5,1.5c0,0.8 -0.7,1.5 -1.5,1.5C36.7,35 36,34.3 36,33.5z"/>
|
||||
<path
|
||||
android:fillColor="#F7BE8F"
|
||||
android:pathData="M33,39c0,0.6 -0.4,1 -1,1s-1,-0.4 -1,-1H33z"/>
|
||||
<path
|
||||
android:fillColor="#F4B28E"
|
||||
android:pathData="M32,44.5c-1.6,0 -3.1,-0.9 -3.9,-2.2C28,42 28,41.7 28.3,41.6c0.2,-0.1 0.5,-0.1 0.7,0.2c0.6,1.1 1.8,1.8 3,1.8s2.4,-0.7 3,-1.8c0.1,-0.2 0.4,-0.3 0.7,-0.2c0.2,0.1 0.3,0.4 0.2,0.7C35.1,43.6 33.6,44.5 32,44.5z"/>
|
||||
<path
|
||||
android:fillColor="#262647"
|
||||
android:pathData="M46,26v7h-2v-5.4l-5.4,-4.2c-1.5,4 -5.9,6.8 -10.3,6.8c-3,0 -6.4,-1.3 -8.3,-3.4v0.9V33h-2v-8.5c0,-3.1 1,-5.6 2.7,-7.5c2.6,-3 6.5,-5.1 10.3,-5c3.1,0.1 5.4,1.1 9,0c0.3,0.5 0.5,1.2 0.3,2.2c-0.1,0.8 -0.2,1 -0.3,1.5l0,0C43.5,18.3 46,21.2 46,26z"/>
|
||||
<path
|
||||
android:fillColor="#F7BE8F"
|
||||
android:pathData="M20,37c-1.7,0 -3,-1.3 -3,-3c0,-0.8 0.3,-1.6 0.9,-2.1c0.5,-0.5 1.3,-0.9 2.1,-0.9V37z"/>
|
||||
<path
|
||||
android:fillColor="#F7BE8F"
|
||||
android:pathData="M44,37c1.7,0 3,-1.3 3,-3c0,-0.8 -0.3,-1.6 -0.9,-2.1C45.6,31.3 44.8,31 44,31V37z"/>
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_person_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_person_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M12,12c2.21,0 4,-1.79 4,-4s-1.79,-4 -4,-4S8,5.79 8,8S9.79,12 12,12zM12,14c-2.67,0 -8,1.34 -8,4v1c0,0.55 0.45,1 1,1h14c0.55,0 1,-0.45 1,-1v-1C20,15.34 14.67,14 12,14z"/>
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_play_arrow_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_play_arrow_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/icon_notification_dimen"
|
||||
android:height="@dimen/icon_notification_dimen"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M8,6.82v10.36c0,0.79,0.87,1.27,1.54,0.84l8.14-5.18c0.62-0.39,0.62-1.29,0-1.69L9.54,5.98C8.87,5.55,8,6.03,8,6.82z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_play_arrow_white_big.xml
Normal file
12
app/src/main/res/drawable/ic_play_arrow_white_big.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="64dp"
|
||||
android:height="64dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M8,6.82v10.36c0,0.79,0.87,1.27,1.54,0.84l8.14-5.18c0.62-0.39,0.62-1.29,0-1.69L9.54,5.98C8.87,5.55,8,6.03,8,6.82z" />
|
||||
</vector>
|
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10s10,-4.48 10,-10S17.52,2 12,2zM10,15.5v-7c0,-0.41 0.47,-0.65 0.8,-0.4l4.67,3.5c0.27,0.2 0.27,0.6 0,0.8l-4.67,3.5C10.47,16.15 10,15.91 10,15.5z"/>
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_playlist_add_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_playlist_add_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M13,10H3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1v0C14,10.45,13.55,10,13,10z M13,6H3 C2.45,6,2,6.45,2,7v0c0,0.55,0.45,1,1,1h10c0.55,0,1-0.45,1-1v0C14,6.45,13.55,6,13,6z M18,14v-3c0-0.55-0.45-1-1-1h0 c-0.55,0-1,0.45-1,1v3h-3c-0.55,0-1,0.45-1,1v0c0,0.55,0.45,1,1,1h3v3c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1v-3h3 c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H18z M3,16h6c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H3c-0.55,0-1,0.45-1,1v0 C2,15.55,2.45,16,3,16z" />
|
||||
</vector>
|
21
app/src/main/res/drawable/ic_playlist_play_white_24dp.xml
Normal file
21
app/src/main/res/drawable/ic_playlist_play_white_24dp.xml
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M5,10h10c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H5c-0.55,0-1-0.45-1-1v0C4,10.45,4.45,10,5,10z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M5,6h10c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H5C4.45,8,4,7.55,4,7v0C4,6.45,4.45,6,5,6z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M5,14h6c0.55,0,1,0.45,1,1v0c0,0.55-0.45,1-1,1H5c-0.55,0-1-0.45-1-1v0C4,14.45,4.45,14,5,14z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M14,14.88v4.23c0,0.39,0.42,0.63,0.76,0.43l3.53-2.12c0.32-0.19,0.32-0.66,0-0.86l-3.53-2.12 C14.42,14.25,14,14.49,14,14.88z" />
|
||||
</vector>
|
5
app/src/main/res/drawable/ic_popcorn_white_24dp.xml
Normal file
5
app/src/main/res/drawable/ic_popcorn_white_24dp.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<vector android:height="24dp" android:viewportHeight="512.0"
|
||||
android:viewportWidth="512.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#FFFFFF" android:pathData="M228.7,57.2c-6.8,0 -13.4,1.8 -19.1,5.1c-6,-5.2 -13.7,-8.2 -21.8,-8.2c-18.4,0 -33.4,15 -33.4,33.4s15,33.4 33.4,33.4c5.3,0 9.6,-4.3 9.6,-9.6c0,-5.3 -4.3,-9.6 -9.6,-9.6c-7.8,0 -14.2,-6.4 -14.2,-14.2s6.4,-14.2 14.2,-14.2c5.1,0 9.6,2.6 12.2,7c1.5,2.6 4.2,4.3 7.1,4.6c3,0.3 5.9,-0.7 8,-2.9c3.6,-3.7 8.4,-5.8 13.6,-5.8c10.4,0 18.9,8.5 18.9,18.9c0,5.3 4.3,9.6 9.6,9.6c5.3,0 9.6,-4.3 9.6,-9.6C266.7,74.3 249.7,57.2 228.7,57.2z"/>
|
||||
<path android:fillColor="#FFFFFF" android:pathData="M477.9,255l-6.3,-38.8c-0.8,-4.6 -4.8,-8 -9.5,-8h-9.9l-8,-30.3c-1.1,-4.2 -4.9,-7.1 -9.3,-7.1h-33.9l2.4,-26.8c6.6,-8.5 10.2,-19 10.2,-29.9c0,-21.8 -14,-40.3 -33.8,-46.6c0.1,-1.3 0.2,-2.6 0.2,-3.9c0,-21.7 -17.7,-39.4 -39.4,-39.4c-6.2,0 -12.2,1.4 -17.5,4.1c-8.9,-13.4 -24.1,-21.9 -40.8,-21.9c-10.4,0 -20.3,3.2 -28.5,9.1C246.6,5.9 235.1,0 222.7,0c-11.9,0 -23.1,5.5 -30.4,14.4c-7.9,-5.2 -17.3,-8.1 -27,-8.1c-16.7,0 -31.9,8.4 -40.8,21.9c-5.4,-2.7 -11.4,-4.1 -17.5,-4.1c-21.7,0 -39.4,17.7 -39.4,39.4c0,1.3 0.1,2.6 0.2,3.9c-19.9,6.3 -33.8,24.8 -33.8,46.6c0,10.9 3.6,21.4 10.2,29.9l34.6,359.5c0.5,4.9 4.6,8.7 9.5,8.7L427,512c5,0 9.1,-3.8 9.6,-8.8l19.6,-237.1h12.3c2.8,0 5.5,-1.2 7.3,-3.4C477.6,260.6 478.4,257.7 477.9,255zM427.6,189.8l4.8,18.3H258.8l4.8,-18.3H427.6zM274.9,170.6l1.9,-20.5h52.7l-2.6,20.5H274.9zM346.3,170.6l2.6,-20.5h34.9l-1.9,20.5H346.3zM53.1,114c0,-13.5 8.8,-24.9 21.3,-28.5c4.9,6.8 13.4,13.8 25.8,13.8c1.5,0 3,-0.1 4.7,-0.3c5.2,-0.7 8.9,-5.5 8.2,-10.8c-0.7,-5.3 -5.6,-8.9 -10.8,-8.2c-9.5,1.3 -13.3,-6.9 -14,-8.5c-0,-0 -0,-0.1 -0,-0.1c-0,-0 -0,-0 -0,-0.1c-1,-2.4 -1.5,-5 -1.5,-7.7c0,-11.1 9.1,-20.2 20.2,-20.2c5.4,0 10.5,2.1 14.3,6c2.3,2.3 5.7,3.3 8.9,2.6c3.2,-0.7 5.8,-3.1 6.9,-6.2c4.1,-12 15.4,-20.1 28.2,-20.1c8.5,0 16.6,3.6 22.2,10c2.2,2.5 5.6,3.7 8.9,3.1c3.3,-0.6 6.1,-2.9 7.2,-6.1c2.9,-7.9 10.6,-13.2 19,-13.2c8.9,0 16.9,6 19.4,14.6c1,3.5 3.9,6.1 7.4,6.7c3.5,0.7 7.2,-0.7 9.4,-3.5c5.7,-7.3 14.3,-11.5 23.5,-11.5c12.7,0 24,8.1 28.2,20.1c1.1,3.1 3.7,5.5 6.9,6.2c3.2,0.7 6.6,-0.2 8.9,-2.6c3.8,-3.8 8.9,-5.9 14.3,-5.9c11.1,0 20.2,9.1 20.2,20.2c0,2.6 -0.5,5.2 -1.5,7.7c-1.2,2.8 -0.9,6 0.7,8.6c1.6,2.6 4.3,4.3 7.3,4.6c15.2,1.3 27.1,14.4 27.1,29.6c0,6.1 -1.9,12 -5.4,17H58.5C55,126 53.1,120.1 53.1,114zM97,492.8L64,150.1h34.4l28.4,342.7H97zM146.1,492.8l-28.4,-342.7h56.2l21.8,342.7H146.1zM214.9,492.8l-21.8,-342.7h64.6l-1.9,20.6c-4.1,0.2 -7.7,3 -8.8,7.1l-8,30.3h-9.9c-4.7,0 -8.7,3.4 -9.5,8l-6.3,38.8c-0.5,2.8 0.3,5.6 2.2,7.8c1.8,2.1 4.5,3.4 7.3,3.4h12.3l18.8,226.7H214.9zM424.9,412h-47.6c-18.7,0 -33.9,-15.2 -33.9,-33.9c0,-9.1 3.5,-17.6 9.9,-24c6.4,-6.4 14.9,-9.9 23.9,-9.9h53.3L424.9,412zM432.1,325h-54.8c-14.2,0 -27.5,5.5 -37.5,15.5c-10,10 -15.5,23.3 -15.5,37.5c0,29.3 23.8,53.1 53.1,53.1h46l-5.1,61.7h-39.6v-0H273l-18.8,-226.7h182.7L432.1,325zM447.4,246.9H243.8h-9.8l3.2,-19.7h9.1h198.6h9.1l3.2,19.7H447.4z"/>
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_queue_music_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_queue_music_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M14,6H4C3.45,6 3,6.45 3,7v0c0,0.55 0.45,1 1,1h10c0.55,0 1,-0.45 1,-1v0C15,6.45 14.55,6 14,6zM14,10H4c-0.55,0 -1,0.45 -1,1v0c0,0.55 0.45,1 1,1h10c0.55,0 1,-0.45 1,-1v0C15,10.45 14.55,10 14,10zM4,16h6c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H4c-0.55,0 -1,0.45 -1,1v0C3,15.55 3.45,16 4,16zM19,6c-1.1,0 -2,0.9 -2,2v6.18C16.69,14.07 16.35,14 16,14c-1.84,0 -3.28,1.64 -2.95,3.54c0.21,1.21 1.2,2.2 2.41,2.41C17.36,20.28 19,18.84 19,17V8h2c0.55,0 1,-0.45 1,-1v0c0,-0.55 -0.45,-1 -1,-1H19z"/>
|
||||
</vector>
|
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M21,6v12c0,0.55 0.45,1 1,1h0c0.55,0 1,-0.45 1,-1V6c0,-0.55 -0.45,-1 -1,-1h0C21.45,5 21,5.45 21,6zM18,19L18,19c0.55,0 1,-0.45 1,-1V6c0,-0.55 -0.45,-1 -1,-1h0c-0.55,0 -1,0.45 -1,1v12C17,18.55 17.45,19 18,19zM14,5H2C1.45,5 1,5.45 1,6v12c0,0.55 0.45,1 1,1h12c0.55,0 1,-0.45 1,-1V6C15,5.45 14.55,5 14,5zM8,7.75c1.24,0 2.25,1.01 2.25,2.25S9.24,12.25 8,12.25S5.75,11.24 5.75,10S6.76,7.75 8,7.75zM12.5,17h-9v-0.75c0,-1.5 3,-2.25 4.5,-2.25s4.5,0.75 4.5,2.25V17z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_redo_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_redo_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M18.4,10.6C16.55,8.99,14.15,8,11.5,8c-4.16,0-7.74,2.42-9.44,5.93C1.74,14.6,2.1,15.4,2.81,15.64l0,0 c0.59,0.2,1.23-0.08,1.5-0.64c1.3-2.66,4.03-4.5,7.19-4.5c1.95,0,3.73,0.72,5.12,1.88l-1.91,1.91C14.08,14.92,14.52,16,15.41,16H21 c0.55,0,1-0.45,1-1V9.41c0-0.89-1.08-1.34-1.71-0.71L18.4,10.6z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_repeat_one_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_repeat_one_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M7,7h10v1.79c0,0.45,0.54,0.67,0.85,0.35l2.79-2.79c0.2-0.2,0.2-0.51,0-0.71l-2.79-2.79C17.54,2.54,17,2.76,17,3.21V5H6 C5.45,5,5,5.45,5,6v4c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V7z M17,17H7v-1.79c0-0.45-0.54-0.67-0.85-0.35l-2.79,2.79 c-0.2,0.2-0.2,0.51,0,0.71l2.79,2.79C6.46,21.46,7,21.24,7,20.79V19h11c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1h0 c-0.55,0-1,0.45-1,1V17z M13,14.25V9.81C13,9.36,12.64,9,12.19,9h0c-0.13,0-0.25,0.03-0.36,0.09l-1.49,0.74 C10.13,9.93,10,10.15,10,10.38v0c0,0.34,0.28,0.62,0.62,0.62h0.88v3.25c0,0.41,0.34,0.75,0.75,0.75h0C12.66,15,13,14.66,13,14.25z" />
|
||||
</vector>
|
13
app/src/main/res/drawable/ic_repeat_white_24dp.xml
Normal file
13
app/src/main/res/drawable/ic_repeat_white_24dp.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
|
||||
<path
|
||||
android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M7,7h10v1.79c0,0.45,0.54,0.67,0.85,0.35l2.79-2.79c0.2-0.2,0.2-0.51,0-0.71l-2.79-2.79C17.54,2.54,17,2.76,17,3.21V5H6 C5.45,5,5,5.45,5,6v4c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V7z M17,17H7v-1.79c0-0.45-0.54-0.67-0.85-0.35l-2.79,2.79 c-0.2,0.2-0.2,0.51,0,0.71l2.79,2.79C6.46,21.46,7,21.24,7,20.79V19h11c0.55,0,1-0.45,1-1v-4c0-0.55-0.45-1-1-1h0 c-0.55,0-1,0.45-1,1V17z" />
|
||||
</vector>
|
10
app/src/main/res/drawable/ic_rounded_corner.xml
Normal file
10
app/src/main/res/drawable/ic_rounded_corner.xml
Normal file
|
@ -0,0 +1,10 @@
|
|||
<!-- drawable/rounded_corner.xml -->
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M19,19H21V21H19V19M19,17H21V15H19V17M3,13H5V11H3V13M3,17H5V15H3V17M3,9H5V7H3V9M3,5H5V3H3V5M7,5H9V3H7V5M15,21H17V19H15V21M11,21H13V19H11V21M15,21H17V19H15V21M7,21H9V19H7V21M3,21H5V19H3V21M21,8A5,5 0 0,0 16,3H11V5H16A3,3 0 0,1 19,8V13H21V8Z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_save_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_save_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M17.59,3.59C17.21,3.21,16.7,3,16.17,3H5C3.89,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V7.83 c0-0.53-0.21-1.04-0.59-1.41L17.59,3.59z M12,19c-1.66,0-3-1.34-3-3s1.34-3,3-3s3,1.34,3,3S13.66,19,12,19z M13,9H7 C5.9,9,5,8.1,5,7v0c0-1.1,0.9-2,2-2h6c1.1,0,2,0.9,2,2v0C15,8.1,14.1,9,13,9z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_scanner_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_scanner_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M19.8,10.7L5.15,5.35c-0.52,-0.19 -1.1,0.08 -1.3,0.6l0,0c-0.19,0.53 0.08,1.11 0.6,1.3L17.6,12H5c-1.1,0 -2,0.9 -2,2v4c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2v-5.5C21,11.7 20.5,10.9 19.8,10.7zM7,17H5v-2h2V17zM18,17h-8c-0.55,0 -1,-0.45 -1,-1v0c0,-0.55 0.45,-1 1,-1h8c0.55,0 1,0.45 1,1v0C19,16.55 18.55,17 18,17z"/>
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_search_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_search_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M15.5,14h-0.79l-0.28,-0.27c1.2,-1.4 1.82,-3.31 1.48,-5.34c-0.47,-2.78 -2.79,-5 -5.59,-5.34c-4.23,-0.52 -7.79,3.04 -7.27,7.27c0.34,2.8 2.56,5.12 5.34,5.59c2.03,0.34 3.94,-0.28 5.34,-1.48L14,14.71v0.79l4.25,4.25c0.41,0.41 1.08,0.41 1.49,0l0,0c0.41,-0.41 0.41,-1.08 0,-1.49L15.5,14zM9.5,14C7.01,14 5,11.99 5,9.5S7.01,5 9.5,5S14,7.01 14,9.5S11.99,14 9.5,14z" />
|
||||
</vector>
|
1
app/src/main/res/drawable/ic_select_all_white_24dp.xml
Normal file
1
app/src/main/res/drawable/ic_select_all_white_24dp.xml
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFF"
android:pathData="M3,5h2L5,3c-1.1,0 -2,0.9 -2,2zM3,13h2v-2L3,11v2zM7,21h2v-2L7,19v2zM3,9h2L5,7L3,7v2zM13,3h-2v2h2L13,3zM19,3v2h2c0,-1.1 -0.9,-2 -2,-2zM5,21v-2L3,19c0,1.1 0.9,2 2,2zM3,17h2v-2L3,15v2zM9,3L7,3v2h2L9,3zM11,21h2v-2h-2v2zM19,13h2v-2h-2v2zM19,21c1.1,0 2,-0.9 2,-2h-2v2zM19,9h2L21,7h-2v2zM19,17h2v-2h-2v2zM15,21h2v-2h-2v2zM15,5h2L17,3h-2v2zM7,17h10L17,7L7,7v10zM9,9h6v6L9,15L9,9z" />
</vector>
|
9
app/src/main/res/drawable/ic_settings_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_settings_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M19.43,12.98c0.04,-0.32 0.07,-0.64 0.07,-0.98s-0.03,-0.66 -0.07,-0.98l2.11,-1.65c0.19,-0.15 0.24,-0.42 0.12,-0.64l-2,-3.46c-0.12,-0.22 -0.39,-0.3 -0.61,-0.22l-2.49,1c-0.52,-0.4 -1.08,-0.73 -1.69,-0.98l-0.38,-2.65C14.46,2.18 14.25,2 14,2h-4C9.75,2 9.54,2.18 9.51,2.42L9.13,5.07C8.52,5.32 7.96,5.66 7.44,6.05l-2.49,-1c-0.23,-0.09 -0.49,0 -0.61,0.22l-2,3.46C2.21,8.95 2.27,9.22 2.46,9.37l2.11,1.65C4.53,11.34 4.5,11.67 4.5,12s0.03,0.66 0.07,0.98l-2.11,1.65c-0.19,0.15 -0.24,0.42 -0.12,0.64l2,3.46c0.12,0.22 0.39,0.3 0.61,0.22l2.49,-1c0.52,0.4 1.08,0.73 1.69,0.98l0.38,2.65C9.54,21.82 9.75,22 10,22h4c0.25,0 0.46,-0.18 0.49,-0.42l0.38,-2.65c0.61,-0.25 1.17,-0.59 1.69,-0.98l2.49,1c0.23,0.09 0.49,0 0.61,-0.22l2,-3.46c0.12,-0.22 0.07,-0.49 -0.12,-0.64L19.43,12.98zM12,15.5c-1.93,0 -3.5,-1.57 -3.5,-3.5s1.57,-3.5 3.5,-3.5s3.5,1.57 3.5,3.5S13.93,15.5 12,15.5z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_share_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_share_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M18,16.08c-0.76,0 -1.44,0.3 -1.96,0.77L8.91,12.7C8.96,12.47 9,12.24 9,12s-0.04,-0.47 -0.09,-0.7l7.05,-4.11C16.5,7.69 17.21,8 18,8c1.66,0 3,-1.34 3,-3s-1.34,-3 -3,-3s-3,1.34 -3,3c0,0.24 0.04,0.47 0.09,0.7L8.04,9.81C7.5,9.31 6.79,9 6,9c-1.66,0 -3,1.34 -3,3s1.34,3 3,3c0.79,0 1.5,-0.31 2.04,-0.81l7.12,4.16c-0.05,0.21 -0.08,0.43 -0.08,0.65c0,1.61 1.31,2.92 2.92,2.92s2.92,-1.31 2.92,-2.92S19.61,16.08 18,16.08z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_shuffle_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_shuffle_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M10.59,9.17L6.12,4.7c-0.39-0.39-1.02-0.39-1.41,0l0,0c-0.39,0.39-0.39,1.02,0,1.41l4.46,4.46L10.59,9.17z M15.35,4.85 l1.19,1.19L4.7,17.88c-0.39,0.39-0.39,1.02,0,1.41h0c0.39,0.39,1.02,0.39,1.41,0L17.96,7.46l1.19,1.19C19.46,8.96,20,8.74,20,8.29 V4.5C20,4.22,19.78,4,19.5,4h-3.79C15.26,4,15.04,4.54,15.35,4.85z M14.83,13.41l-1.41,1.41l3.13,3.13l-1.2,1.2 C15.04,19.46,15.26,20,15.71,20h3.79c0.28,0,0.5-0.22,0.5-0.5v-3.79c0-0.45-0.54-0.67-0.85-0.35l-1.19,1.19L14.83,13.41z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_skip_next_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_skip_next_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/icon_notification_dimen"
|
||||
android:height="@dimen/icon_notification_dimen"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M7.58,16.89l5.77-4.07c0.56-0.4,0.56-1.24,0-1.63L7.58,7.11C6.91,6.65,6,7.12,6,7.93v8.14C6,16.88,6.91,17.35,7.58,16.89z M16,7v10c0,0.55,0.45,1,1,1h0c0.55,0,1-0.45,1-1V7c0-0.55-0.45-1-1-1h0C16.45,6,16,6.45,16,7z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_skip_previous_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_skip_previous_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="@dimen/icon_notification_dimen"
|
||||
android:height="@dimen/icon_notification_dimen"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M7,6L7,6c0.55,0,1,0.45,1,1v10c0,0.55-0.45,1-1,1h0c-0.55,0-1-0.45-1-1V7C6,6.45,6.45,6,7,6z M10.66,12.82l5.77,4.07 c0.66,0.47,1.58-0.01,1.58-0.82V7.93c0-0.81-0.91-1.28-1.58-0.82l-5.77,4.07C10.09,11.58,10.09,12.42,10.66,12.82z" />
|
||||
</vector>
|
12
app/src/main/res/drawable/ic_sort_white_24dp.xml
Normal file
12
app/src/main/res/drawable/ic_sort_white_24dp.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportHeight="24"
|
||||
android:viewportWidth="24">
|
||||
|
||||
<path android:pathData="M0,0h24v24H0V0z" />
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M4,18h4c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4c-0.55,0-1,0.45-1,1v0C3,17.55,3.45,18,4,18z M3,7L3,7c0,0.55,0.45,1,1,1 h16c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4C3.45,6,3,6.45,3,7z M4,13h10c0.55,0,1-0.45,1-1v0c0-0.55-0.45-1-1-1H4 c-0.55,0-1,0.45-1,1v0C3,12.55,3.45,13,4,13z" />
|
||||
</vector>
|
9
app/src/main/res/drawable/ic_star_white_24dp.xml
Normal file
9
app/src/main/res/drawable/ic_star_white_24dp.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24"
|
||||
android:viewportHeight="24">
|
||||
<path
|
||||
android:fillColor="@color/md_white_1000"
|
||||
android:pathData="M12,17.27l4.15,2.51c0.76,0.46 1.69,-0.22 1.49,-1.08l-1.1,-4.72l3.67,-3.18c0.67,-0.58 0.31,-1.68 -0.57,-1.75l-4.83,-0.41l-1.89,-4.46c-0.34,-0.81 -1.5,-0.81 -1.84,0L9.19,8.63L4.36,9.04c-0.88,0.07 -1.24,1.17 -0.57,1.75l3.67,3.18l-1.1,4.72c-0.2,0.86 0.73,1.54 1.49,1.08L12,17.27z"/>
|
||||
</vector>
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue