2020-09-28 04:25:58 -07:00
|
|
|
<?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"
|
|
|
|
|
|
2020-10-27 11:03:50 -07:00
|
|
|
|
2020-09-28 04:25:58 -07:00
|
|
|
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"
|
2020-10-08 02:20:14 -07:00
|
|
|
android:title="About" />
|
2020-09-28 04:25:58 -07:00
|
|
|
|
|
|
|
|
<item
|
|
|
|
|
android:id="@+id/logout"
|
|
|
|
|
android:title="Logout" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</group>
|
|
|
|
|
|
|
|
|
|
</menu>
|