Removed the redundant "other" label from the navigation drawer.
This commit is contained in:
parent
6880710920
commit
dea3b49491
1 changed files with 15 additions and 13 deletions
|
|
@ -1,7 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<group android:checkableBehavior="single">
|
||||
<group
|
||||
android:id="@+id/navigation_drawer_menu_category_sections"
|
||||
android:checkableBehavior="single">
|
||||
<item
|
||||
android:id="@+id/nav_songs"
|
||||
android:icon="@drawable/ic_audiotrack_white_24dp"
|
||||
|
|
@ -20,17 +22,17 @@
|
|||
android:title="@string/playlists" />
|
||||
</group>
|
||||
|
||||
<item android:title="@string/other">
|
||||
<menu>
|
||||
<item
|
||||
android:id="@+id/nav_settings"
|
||||
android:icon="@drawable/ic_settings_white_24dp"
|
||||
android:title="@string/action_settings" />
|
||||
<item
|
||||
android:id="@+id/nav_about"
|
||||
android:icon="@drawable/ic_help_white_24dp"
|
||||
android:title="@string/action_about" />
|
||||
</menu>
|
||||
</item>
|
||||
<group
|
||||
android:id="@+id/navigation_drawer_menu_category_other"
|
||||
android:checkableBehavior="none">
|
||||
<item
|
||||
android:id="@+id/nav_settings"
|
||||
android:icon="@drawable/ic_settings_white_24dp"
|
||||
android:title="@string/action_settings" />
|
||||
<item
|
||||
android:id="@+id/nav_about"
|
||||
android:icon="@drawable/ic_help_white_24dp"
|
||||
android:title="@string/action_about" />
|
||||
</group>
|
||||
|
||||
</menu>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue