| 21478 |
rajender |
1 |
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
2 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
3 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
4 |
tools:context="com.saholic.profittill.main.MainActivity">
|
|
|
5 |
|
|
|
6 |
<item android:id="@+id/action_notifications"
|
|
|
7 |
android:title="Notifications"
|
|
|
8 |
app:actionLayout="@layout/in_app_notification_view"
|
|
|
9 |
android:icon="@drawable/in_app_notification"
|
|
|
10 |
app:showAsAction="always"/>
|
|
|
11 |
|
|
|
12 |
<group android:id="@+id/overflowMenu">
|
|
|
13 |
<item android:id="@+id/my_favorites" android:title="My Favorites"
|
|
|
14 |
android:icon="@drawable/my_fav"/>
|
|
|
15 |
|
|
|
16 |
<item android:id="@+id/my_preferences" android:title="My Preferences"
|
|
|
17 |
android:icon="@drawable/my_preferences"
|
|
|
18 |
/>
|
|
|
19 |
|
|
|
20 |
<item android:id="@+id/my_wallet" android:title="My Wallet"
|
|
|
21 |
android:icon="@drawable/pending_cashback"
|
|
|
22 |
/>
|
|
|
23 |
|
|
|
24 |
<item android:id="@+id/my_order"
|
|
|
25 |
android:icon="@drawable/my_order"
|
|
|
26 |
android:title="My Order History" />
|
|
|
27 |
|
|
|
28 |
<item android:id="@+id/pending_cashback"
|
|
|
29 |
android:icon="@drawable/pending_cashback"
|
|
|
30 |
android:title="Cashback Status" />
|
|
|
31 |
|
|
|
32 |
<item android:id="@+id/my_profile"
|
|
|
33 |
android:icon="@drawable/my_details"
|
|
|
34 |
android:title="My Profile" />
|
|
|
35 |
|
|
|
36 |
<item android:id="@+id/action_settings"
|
|
|
37 |
android:title="Sign Out"
|
|
|
38 |
></item>
|
|
|
39 |
</group>
|
|
|
40 |
</menu>
|
|
|
41 |
|