| 14792 |
manas |
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 |
|
|
|
7 |
<group android:id="@+id/overflowMenu">
|
|
|
8 |
<item android:id="@+id/my_favorites" android:title="My Favorites"
|
|
|
9 |
android:icon="@drawable/my_fav"/>
|
|
|
10 |
|
|
|
11 |
<item android:id="@+id/my_preferences" android:title="My Preferences"
|
|
|
12 |
android:icon="@drawable/my_preferences"
|
|
|
13 |
/>
|
|
|
14 |
|
|
|
15 |
<item android:id="@+id/my_wallet" android:title="My Wallet"
|
|
|
16 |
android:icon="@drawable/pending_cashback"
|
|
|
17 |
/>
|
|
|
18 |
|
|
|
19 |
<item android:id="@+id/my_order"
|
|
|
20 |
android:icon="@drawable/my_order"
|
|
|
21 |
android:title="My Order History" />
|
|
|
22 |
|
|
|
23 |
<item android:id="@+id/pending_cashback"
|
|
|
24 |
android:icon="@drawable/pending_cashback"
|
|
|
25 |
android:title="Cashback Status" />
|
|
|
26 |
|
|
|
27 |
<item android:id="@+id/my_profile"
|
|
|
28 |
android:icon="@drawable/my_details"
|
|
|
29 |
android:title="My Profile" />
|
|
|
30 |
|
|
|
31 |
<item android:id="@+id/action_settings"
|
|
|
32 |
android:title="Sign Out"
|
|
|
33 |
></item>
|
|
|
34 |
</group>
|
|
|
35 |
</menu>
|
|
|
36 |
|