• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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 tablet -->
18
19<menu xmlns:android="http://schemas.android.com/apk/res/android">
20    <item
21        android:id="@+id/compose"
22        android:alphabeticShortcut="c"
23        android:title="@string/compose_action"
24        android:icon="@drawable/ic_menu_compose_normal_holo_light"
25        android:showAsAction="ifRoom"
26    />
27    <item
28        android:id="@+id/search"
29        android:alphabeticShortcut="s"
30        android:title="@string/search_action"
31        android:icon="@drawable/ic_menu_search_holo_light"
32        android:showAsAction="ifRoom"
33    />
34
35    <item android:id="@+id/delete" android:title="@string/delete_action"
36        android:icon="@drawable/ic_menu_trash_holo_light"
37        android:showAsAction="ifRoom" />
38
39    <item
40        android:id="@+id/move"
41        android:title="@string/move_action"
42        android:icon="@drawable/ic_menu_move_to_holo_light"
43        android:showAsAction="never"
44    />
45
46    <item
47        android:id="@+id/mark_as_unread"
48        android:title="@string/mark_as_unread_action"
49        android:showAsAction="never"
50        android:icon="@drawable/ic_menu_mark_unread_holo_light"
51    />
52
53    <item
54        android:id="@+id/mailbox_settings"
55        android:title="@string/mailbox_settings_action"
56        android:icon="@android:drawable/ic_menu_preferences"
57    />
58    <item
59        android:id="@+id/account_settings"
60        android:title="@string/settings_action"
61        android:icon="@android:drawable/ic_menu_preferences"
62    />
63</menu>
64