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 |
| 11 android:id="@+id/select_action_menu_select_all" |
| 12 android:icon="?android:attr/actionModeSelectAllDrawable" |
| 13 android:title="@android:string/selectAll" |
| 14 android:showAsAction="always|withText" |
| 15 android:alphabeticShortcut="a" |
| 16 /> |
| 17 <item |
| 18 android:id="@+id/select_action_menu_cut" |
| 19 android:icon="?android:attr/actionModeCutDrawable" |
| 20 android:title="@android:string/cut" |
| 21 android:showAsAction="always|withText" |
| 22 android:alphabeticShortcut="x" |
| 23 /> |
| 24 <item |
| 25 android:id="@+id/select_action_menu_copy" |
| 26 android:icon="?android:attr/actionModeCopyDrawable" |
| 27 android:title="@android:string/copy" |
| 28 android:showAsAction="always|withText" |
| 29 android:alphabeticShortcut="c" |
| 30 /> |
| 31 <item |
| 32 android:id="@+id/select_action_menu_paste" |
| 33 android:icon="?android:attr/actionModePasteDrawable" |
| 34 android:title="@android:string/paste" |
| 35 android:showAsAction="always|withText" |
| 36 android:alphabeticShortcut="v" |
| 37 /> |
| 38 <item |
| 39 android:id="@+id/select_action_menu_share" |
| 40 android:icon="@drawable/ic_menu_share_holo_light" |
| 41 android:title="@string/actionbar_share" |
| 42 android:showAsAction="always|withText" |
| 43 /> |
| 44 <item |
| 45 android:id="@+id/select_action_menu_web_search" |
| 46 android:icon="@drawable/ic_menu_search_holo_light" |
| 47 android:title="@string/actionbar_web_search" |
| 48 android:showAsAction="always|withText" |
| 49 /> |
| 50 </menu> |
OLD | NEW |