• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<!-- Message view menu options for the phone -->
18
19<menu xmlns:android="http://schemas.android.com/apk/res/android">
20    <item android:id="@+id/delete" android:title="@string/delete_action"
21        android:icon="@drawable/ic_menu_trash_holo_light"
22        android:showAsAction="ifRoom" />
23    <item
24        android:id="@+id/move"
25        android:title="@string/move_action"
26        android:icon="@drawable/ic_menu_move_to_holo_light"
27        android:showAsAction="ifRoom"
28    />
29
30    <item
31        android:id="@+id/mark_as_unread"
32        android:title="@string/mark_as_unread_action"
33        android:showAsAction="ifRoom"
34        android:icon="@drawable/ic_menu_mark_unread_holo_light"
35    />
36
37    <!-- Note the order; we want to show them to the right of delete/move -->
38    <item
39        android:id="@+id/newer"
40        android:icon="@drawable/menu_item_newer"
41        android:showAsAction="always"
42        android:visible="false"
43    />
44    <item
45        android:id="@+id/older"
46        android:icon="@drawable/menu_item_older"
47        android:showAsAction="always"
48        android:visible="false"
49    />
50    <item
51        android:id="@+id/mailbox_settings"
52        android:title="@string/mailbox_settings_action"
53        android:icon="@android:drawable/ic_menu_preferences"
54        android:showAsAction="never"
55    />
56    <item
57        android:id="@+id/account_settings"
58        android:title="@string/settings_action"
59        android:icon="@android:drawable/ic_menu_preferences"
60        android:showAsAction="never"
61    />
62</menu>
63