Advertisement
riyanwenas

drawer.xml

Feb 15th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <menu xmlns:android="http://schemas.android.com/apk/res/android">
  3.  
  4. <group
  5. android:id="@+id/group1"
  6. android:checkableBehavior="single"
  7. android:visible="true">
  8.  
  9. <item
  10. android:id="@+id/item_home"
  11. android:icon="@drawable/ic_home"
  12. android:title="Home" />
  13.  
  14. </group>
  15.  
  16. <group
  17. android:id="@+id/group2"
  18. android:checkableBehavior="single"
  19. android:visible="true">
  20.  
  21. <item
  22. android:id="@+id/item_contact_list"
  23. android:icon="@drawable/ic_contact"
  24. android:title="Contact List" />
  25.  
  26. </group>
  27.  
  28. </menu>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement