OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 | |
3 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
4 | |
5 Use of this source code is governed by a BSD-style license that can be | |
6 found in the LICENSE file. | |
7 --> | |
8 | |
9 <menu xmlns:android="http://schemas.android.com/apk/res/android"> | |
10 <item android:id="@+id/select_action_menu_select_all" | |
newt (away)
2013/09/25 18:18:53
nit: I'd move "android:id" to the next line, so al
benm (inactive)
2013/09/25 19:31:06
Done.
| |
11 android:icon="?android:attr/actionModeSelectAllDrawable" | |
12 android:title="@android:string/selectAll" | |
13 android:showAsAction="always|withText" | |
14 android:alphabeticShortcut="a" | |
15 /> | |
16 <item android:id="@+id/select_action_menu_cut" | |
17 android:icon="?android:attr/actionModeCutDrawable" | |
18 android:title="@android:string/cut" | |
19 android:showAsAction="always|withText" | |
20 android:alphabeticShortcut="x" | |
21 /> | |
22 <item android:id="@+id/select_action_menu_copy" | |
23 android:icon="?android:attr/actionModeCopyDrawable" | |
24 android:title="@android:string/copy" | |
25 android:showAsAction="always|withText" | |
26 android:alphabeticShortcut="c" | |
27 /> | |
28 <item android:id="@+id/select_action_menu_paste" | |
29 android:icon="?android:attr/actionModePasteDrawable" | |
30 android:title="@android:string/paste" | |
31 android:showAsAction="always|withText" | |
32 android:alphabeticShortcut="v" | |
33 /> | |
34 <item android:id="@+id/select_action_menu_share" | |
35 android:icon="@drawable/ic_menu_share_holo_light" | |
36 android:title="@string/actionbar_share" | |
37 android:showAsAction="always|withText" | |
38 /> | |
39 <item android:id="@+id/select_action_menu_web_search" | |
40 android:icon="@drawable/ic_menu_search_holo_light" | |
41 android:title="@string/actionbar_web_search" | |
42 android:showAsAction="always|withText" | |
43 /> | |
44 </menu> | |
OLD | NEW |