Adding now playing themes and KOTLIN conversion
This commit is contained in:
parent
d03ae1aadb
commit
df37529db8
131 changed files with 5398 additions and 5304 deletions
|
@ -1,12 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<item
|
||||
android:id="@+id/action_home"
|
||||
android:enabled="true"
|
||||
android:icon="@drawable/ic_home_white_24dp"
|
||||
android:title="@string/home" />
|
||||
|
||||
<item
|
||||
android:id="@+id/action_song"
|
||||
android:enabled="true"
|
||||
|
|
29
app/src/main/res/menu/menu_drawer.xml
Normal file
29
app/src/main/res/menu/menu_drawer.xml
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<group
|
||||
android:id="@+id/navigation_drawer_menu_category_sections"
|
||||
android:checkableBehavior="single">
|
||||
<item
|
||||
android:id="@+id/nav_home"
|
||||
android:icon="@drawable/ic_home_white_24dp"
|
||||
android:title="@string/home" />
|
||||
<item
|
||||
android:id="@+id/nav_library"
|
||||
android:icon="@drawable/ic_library_music_white_24dp"
|
||||
android:title="@string/library" />
|
||||
<item
|
||||
android:id="@+id/nav_folders"
|
||||
android:icon="@drawable/ic_folder_white_24dp"
|
||||
android:title="@string/folders" />
|
||||
</group>
|
||||
|
||||
<group
|
||||
android:id="@+id/navigation_drawer_menu_category_buy_pro"
|
||||
android:checkableBehavior="none">
|
||||
<item
|
||||
android:id="@+id/buy_pro"
|
||||
android:icon="@drawable/ic_card_giftcard_white_24dp"
|
||||
android:title="@string/buy_pro" />
|
||||
</group>
|
||||
</menu>
|
Loading…
Add table
Add a link
Reference in a new issue