blob: 825db03e57aa4d521114b66f96668f8cb05b4d11 [file] [log] [blame]
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2011 Google Inc.
4 Licensed to The Android Open Source Project.
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18
19<!-- Menu for the action mode invoked when items are selected
20 in the conversation list -->
21
22<menu xmlns:android="http://schemas.android.com/apk/res/android">
Mindy Pereiraf98b3182012-02-22 11:07:13 -080023 <!-- Availability based on account -->
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080024 <item
Mindy Pereiraf98b3182012-02-22 11:07:13 -080025 android:id="@+id/archive"
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080026 android:title="@string/archive"
27 android:showAsAction="ifRoom"
28 android:icon="@drawable/archive"
29 android:alphabeticShortcut="@string/trigger_y_char"/>
30
31 <item
32 android:id="@+id/delete"
33 android:title="@string/delete"
34 android:showAsAction="ifRoom"
35 android:icon="@drawable/trash"/>
36
37 <item
Mindy Pereira30d2d322012-02-03 08:40:49 -080038 android:id="@+id/change_folder"
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080039 android:showAsAction="ifRoom"
40 android:title="@string/menu_change_labels"
41 android:icon="@drawable/ic_menu_labels_holo_light" />
42
43 <item
Mindy Pereirafebeb5f2012-02-14 15:08:13 -080044 android:id="@+id/read"
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080045 android:title="@string/mark_read"
46 android:showAsAction="ifRoom"
Mindy Pereirafebeb5f2012-02-14 15:08:13 -080047 android:icon="@drawable/ic_menu_mark_read_holo_light" />
48
49 <item
50 android:id="@+id/unread"
51 android:title="@string/mark_unread"
52 android:showAsAction="ifRoom"
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080053 android:icon="@drawable/ic_menu_mark_unread_holo_light" />
54
55 <item android:id="@+id/star"
Mindy Pereira326c6602012-01-04 15:32:42 -080056 android:title="@string/add_star"
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080057 android:showAsAction="ifRoom"
58 android:icon="@drawable/ic_menu_star_holo_light" />
59
Mindy Pereirafebeb5f2012-02-14 15:08:13 -080060 <item android:id="@+id/remove_star"
61 android:title="@string/remove_star"
62 android:showAsAction="ifRoom"
63 android:icon="@drawable/ic_menu_star_off_holo_light" />
64
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080065 <item
66 android:id="@+id/mark_important"
67 android:title="@string/mark_important"
68 android:showAsAction="never"
69 android:icon="@drawable/ic_email_caret_double" />
70
71 <item
72 android:id="@+id/mark_not_important"
73 android:title="@string/mark_not_important"
74 android:showAsAction="never"
75 android:icon="@drawable/ic_email_caret_single" />
76
Mindy Pereira830c00f2012-02-22 11:43:49 -080077 <!-- Availability based on account -->
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080078 <item
79 android:id="@+id/mute"
80 android:title="@string/mute"
81 android:showAsAction="never" />
82
Mindy Pereira830c00f2012-02-22 11:43:49 -080083 <!-- Availability based on account -->
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080084 <item
85 android:id="@+id/report_spam"
86 android:title="@string/report_spam"
87 android:showAsAction="never"
88 android:icon="@drawable/ic_spam_normal_holo_light" />
89
90</menu>