2023-05-30 08:48:59 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-03-18 13:16:11 +05:30
|
|
|
<!--
|
|
|
|
|
~ // Copyright (c) 2024 ShanMukha Innovations Pvt. Ltd. All rights reserved.
|
|
|
|
|
~ // Notice: All information contained herein is, and remains
|
|
|
|
|
~ // the property of ShanMukha Innovations Pvt. Ltd. and its suppliers,
|
|
|
|
|
~ // if any. The intellectual and technical concepts contained
|
|
|
|
|
~ // herein are proprietary to ShanMukha Innovations Pvt. Ltd.
|
|
|
|
|
~ // and its suppliers and may be covered by Indian and Foreign Patents,
|
|
|
|
|
~ // patents in process, and are protected by trade secret or copyright law.
|
|
|
|
|
~ // Dissemination of this information or reproduction of this material
|
|
|
|
|
~ // is strictly forbidden unless prior written permission is obtained
|
|
|
|
|
~ // from ShanMukha Innovations Pvt. Ltd.
|
|
|
|
|
-->
|
|
|
|
|
|
2023-05-30 08:48:59 +05:30
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
tools:showIn="navigation_view">
|
|
|
|
|
|
|
|
|
|
<group android:checkableBehavior="single">
|
|
|
|
|
<item
|
|
|
|
|
android:id="@+id/nav_home"
|
|
|
|
|
android:icon="@drawable/ic_baseline_home_24"
|
|
|
|
|
android:title="@string/menu_home" />
|
|
|
|
|
<item
|
|
|
|
|
android:id="@+id/nav_profile"
|
2024-01-03 23:09:28 +05:30
|
|
|
android:icon="@drawable/control_panel"
|
2023-05-30 08:48:59 +05:30
|
|
|
android:title="@string/profile" />
|
2024-03-09 15:20:49 +05:30
|
|
|
<item
|
|
|
|
|
android:id="@+id/nav_activity"
|
|
|
|
|
android:icon="@drawable/shows_activity_24"
|
|
|
|
|
android:title="@string/action_activity" />
|
2023-05-30 08:48:59 +05:30
|
|
|
<item
|
|
|
|
|
android:id="@+id/nav_settings"
|
|
|
|
|
android:icon="@drawable/baseline_settings_24"
|
2023-06-03 19:10:48 +05:30
|
|
|
android:title="@string/menu_settings" />
|
2024-03-25 17:12:24 +05:30
|
|
|
<item
|
|
|
|
|
android:id="@+id/nav_about"
|
|
|
|
|
android:icon="@drawable/baseline_contact_support_24"
|
|
|
|
|
android:title="@string/menu_about" />
|
2023-05-30 08:48:59 +05:30
|
|
|
</group>
|
2024-02-27 13:59:30 +05:30
|
|
|
</menu>
|