-Added different toast for append long click on detail fragment.
-Corrected drag handle icon. -Removed reorder icon. -Refactored play queue item selection.
BIN
app/src/main/res/drawable-hdpi/ic_drag_handle_black_24dp.png
Normal file
|
After Width: | Height: | Size: 98 B |
BIN
app/src/main/res/drawable-hdpi/ic_drag_handle_white_24dp.png
Normal file
|
After Width: | Height: | Size: 99 B |
|
Before Width: | Height: | Size: 107 B |
|
Before Width: | Height: | Size: 110 B |
BIN
app/src/main/res/drawable-mdpi/ic_drag_handle_black_24dp.png
Normal file
|
After Width: | Height: | Size: 81 B |
BIN
app/src/main/res/drawable-mdpi/ic_drag_handle_white_24dp.png
Normal file
|
After Width: | Height: | Size: 82 B |
|
Before Width: | Height: | Size: 82 B |
|
Before Width: | Height: | Size: 84 B |
BIN
app/src/main/res/drawable-xhdpi/ic_drag_handle_black_24dp.png
Normal file
|
After Width: | Height: | Size: 96 B |
BIN
app/src/main/res/drawable-xhdpi/ic_drag_handle_white_24dp.png
Normal file
|
After Width: | Height: | Size: 91 B |
|
Before Width: | Height: | Size: 101 B |
|
Before Width: | Height: | Size: 93 B |
BIN
app/src/main/res/drawable-xxhdpi/ic_drag_handle_black_24dp.png
Normal file
|
After Width: | Height: | Size: 104 B |
BIN
app/src/main/res/drawable-xxhdpi/ic_drag_handle_white_24dp.png
Normal file
|
After Width: | Height: | Size: 94 B |
|
Before Width: | Height: | Size: 113 B |
|
Before Width: | Height: | Size: 96 B |
BIN
app/src/main/res/drawable-xxxhdpi/ic_drag_handle_black_24dp.png
Normal file
|
After Width: | Height: | Size: 112 B |
BIN
app/src/main/res/drawable-xxxhdpi/ic_drag_handle_white_24dp.png
Normal file
|
After Width: | Height: | Size: 95 B |
|
Before Width: | Height: | Size: 116 B |
|
Before Width: | Height: | Size: 99 B |
|
|
@ -32,7 +32,7 @@
|
|||
android:layout_marginLeft="10dp"
|
||||
android:layout_marginRight="5dp"
|
||||
android:scaleType="center"
|
||||
android:src="?attr/reorder"
|
||||
android:src="?attr/drag_handle"
|
||||
tools:ignore="ContentDescription,RtlHardcoded"/>
|
||||
|
||||
<TextView
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
<attr name="palette" format="reference"/>
|
||||
<attr name="language" format="reference"/>
|
||||
<attr name="history" format="reference"/>
|
||||
<attr name="reorder" format="reference"/>
|
||||
<attr name="drag_handle" format="reference"/>
|
||||
|
||||
<!-- Can't refer to colors directly into drawable's xml-->
|
||||
<attr name="toolbar_shadow_drawable" format="reference"/>
|
||||
|
|
|
|||
|
|
@ -91,6 +91,8 @@
|
|||
<string name="settings_category_other_title">Other</string>
|
||||
<string name="background_player_playing_toast">Playing in background</string>
|
||||
<string name="popup_playing_toast">Playing in popup mode</string>
|
||||
<string name="background_player_append">Queued on background player</string>
|
||||
<string name="popup_playing_append">Queued on popup player</string>
|
||||
<string name="c3s_url" translatable="false">https://www.c3s.cc/</string>
|
||||
<string name="play_btn_text">Play</string>
|
||||
<string name="content">Content</string>
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
<item name="palette">@drawable/ic_palette_black_24dp</item>
|
||||
<item name="language">@drawable/ic_language_black_24dp</item>
|
||||
<item name="history">@drawable/ic_history_black_24dp</item>
|
||||
<item name="reorder">@drawable/ic_reorder_black_24dp</item>
|
||||
<item name="drag_handle">@drawable/ic_drag_handle_black_24dp</item>
|
||||
|
||||
<item name="selector_color">@color/light_selector</item>
|
||||
<item name="separator_color">@color/light_separator_color</item>
|
||||
|
|
@ -61,7 +61,7 @@
|
|||
<item name="palette">@drawable/ic_palette_white_24dp</item>
|
||||
<item name="language">@drawable/ic_language_white_24dp</item>
|
||||
<item name="history">@drawable/ic_history_white_24dp</item>
|
||||
<item name="reorder">@drawable/ic_reorder_white_24dp</item>
|
||||
<item name="drag_handle">@drawable/ic_drag_handle_white_24dp</item>
|
||||
|
||||
<item name="selector_color">@color/dark_selector</item>
|
||||
<item name="separator_color">@color/dark_separator_color</item>
|
||||
|
|
|
|||