blob: 71aebb78c35bde350d63580fe9b8d2e3d41c5536 [file] [log] [blame]
Makoto Onuki22d1a792011-06-29 10:37:11 -07001<?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<!-- Email activity menu options for the tablet -->
18
19<menu xmlns:android="http://schemas.android.com/apk/res/android">
20 <item
Makoto Onuki22d1a792011-06-29 10:37:11 -070021 android:id="@+id/compose"
Ben Komaloc341ddf2011-08-22 15:05:33 -070022 android:orderInCategory="100"
Makoto Onuki22d1a792011-06-29 10:37:11 -070023 android:alphabeticShortcut="c"
24 android:title="@string/compose_action"
Ben Komalo8466f792011-08-25 15:25:42 -070025 android:icon="@drawable/ic_menu_compose_normal_holo_light"
Makoto Onuki22d1a792011-06-29 10:37:11 -070026 android:showAsAction="ifRoom"
27 />
28 <item
Ben Komaloc341ddf2011-08-22 15:05:33 -070029 android:id="@+id/search"
30 android:orderInCategory="200"
31 android:alphabeticShortcut="s"
32 android:title="@string/search_action"
33 android:icon="@drawable/ic_menu_search_holo_light"
34 android:showAsAction="ifRoom"
35 />
36
37 <!-- Message view options go here -->
38
39 <item
Makoto Onuki22d1a792011-06-29 10:37:11 -070040 android:id="@+id/refresh"
Ben Komaloc341ddf2011-08-22 15:05:33 -070041 android:orderInCategory="1500"
Makoto Onuki22d1a792011-06-29 10:37:11 -070042 android:alphabeticShortcut="r"
43 android:title="@string/refresh_action"
44 android:icon="@drawable/ic_menu_refresh_holo_light"
45 android:showAsAction="ifRoom"
46 />
47 <!-- Newer/older are not menu items on tablet, but we have them here to keep compatibility
48 with the phone menu. -->
49 <item
50 android:id="@+id/newer"
51 android:visible="false"
52 />
53 <item
54 android:id="@+id/older"
55 android:visible="false"
56 />
57 <item
Ben Komalo6be8cce2011-08-03 17:22:37 -070058 android:id="@+id/mailbox_settings"
Makoto Onuki22d1a792011-06-29 10:37:11 -070059 android:orderInCategory="2000"
Ben Komalo6be8cce2011-08-03 17:22:37 -070060 android:title="@string/mailbox_settings_action"
Makoto Onuki22d1a792011-06-29 10:37:11 -070061 android:icon="@android:drawable/ic_menu_preferences"
62 />
63 <item
Ben Komalo6be8cce2011-08-03 17:22:37 -070064 android:id="@+id/account_settings"
Makoto Onuki22d1a792011-06-29 10:37:11 -070065 android:orderInCategory="3000"
Ben Komalo6be8cce2011-08-03 17:22:37 -070066 android:title="@string/settings_action"
Makoto Onuki22d1a792011-06-29 10:37:11 -070067 android:icon="@android:drawable/ic_menu_preferences"
68 />
69</menu>