- git (re)init (git structure was corrupted)
- added shuffler and repeat mode - xxxhdpi icons - typos - new styles - not fully working playing queue [alpha]
This commit is contained in:
commit
32f76f5418
277 changed files with 20259 additions and 0 deletions
5
app/src/main/res/drawable/list_item_activated.xml
Executable file
5
app/src/main/res/drawable/list_item_activated.xml
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#26000000"/>
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/list_item_activated_dark.xml
Executable file
5
app/src/main/res/drawable/list_item_activated_dark.xml
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#26FFFFFF"/>
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/list_item_selected.xml
Executable file
5
app/src/main/res/drawable/list_item_selected.xml
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#D0D0D0"/>
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/list_item_selected_dark.xml
Executable file
5
app/src/main/res/drawable/list_item_selected_dark.xml
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="#77404040"/>
|
||||
</shape>
|
||||
8
app/src/main/res/drawable/list_selector.xml
Executable file
8
app/src/main/res/drawable/list_selector.xml
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:state_activated="true" android:drawable="@drawable/list_item_activated"/>
|
||||
<item android:state_pressed="true" android:drawable="@drawable/list_item_selected"/>
|
||||
<item android:drawable="@drawable/transparent"/>
|
||||
|
||||
</selector>
|
||||
8
app/src/main/res/drawable/list_selector_dark.xml
Executable file
8
app/src/main/res/drawable/list_selector_dark.xml
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item android:state_activated="true" android:drawable="@drawable/list_item_activated_dark"/>
|
||||
<item android:state_pressed="true" android:drawable="@drawable/list_item_selected_dark"/>
|
||||
<item android:drawable="@drawable/transparent"/>
|
||||
|
||||
</selector>
|
||||
9
app/src/main/res/drawable/navigation_drawer_gradient.xml
Normal file
9
app/src/main/res/drawable/navigation_drawer_gradient.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">
|
||||
<gradient
|
||||
android:angle="90"
|
||||
android:endColor="#00000000"
|
||||
android:startColor="#50000000"
|
||||
android:type="linear"/>
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/transparent.xml
Executable file
5
app/src/main/res/drawable/transparent.xml
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<solid android:color="@android:color/transparent"/>
|
||||
</shape>
|
||||
Loading…
Add table
Add a link
Reference in a new issue