30 lines
794 B
XML
30 lines
794 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
tools:showIn="navigation">
|
|
|
|
<group android:checkableBehavior="single">
|
|
<item
|
|
android:id="@+id/nav_profile"
|
|
|
|
android:title="Your Profile" />
|
|
<item
|
|
android:id="@+id/nav_details"
|
|
android:title="Patient Details" />
|
|
<item
|
|
android:id="@+id/nav_results"
|
|
android:title="Results" />
|
|
|
|
<item
|
|
android:id="@+id/nav_contact_us"
|
|
android:title="Contact Us" />
|
|
|
|
<item
|
|
android:id="@+id/logout"
|
|
android:title="Logout" />
|
|
|
|
|
|
</group>
|
|
|
|
</menu> |