42 lines
1.7 KiB
XML
42 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
~ // 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.
|
|
-->
|
|
|
|
<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"
|
|
android:icon="@drawable/control_panel"
|
|
android:title="@string/profile" />
|
|
<item
|
|
android:id="@+id/nav_activity"
|
|
android:icon="@drawable/shows_activity_24"
|
|
android:title="@string/action_activity" />
|
|
<item
|
|
android:id="@+id/nav_settings"
|
|
android:icon="@drawable/baseline_settings_24"
|
|
android:title="@string/menu_settings" />
|
|
<item
|
|
android:id="@+id/nav_about"
|
|
android:icon="@drawable/baseline_contact_support_24"
|
|
android:title="@string/menu_about" />
|
|
</group>
|
|
</menu>
|