| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 | 2 |
| 3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. |
| 4 | 4 |
| 5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. | 6 found in the LICENSE file. |
| 7 --> | 7 --> |
| 8 | 8 |
| 9 <!--suppress AlwaysShowAction --> | 9 <!--suppress AlwaysShowAction --> |
| 10 <menu xmlns:android="http://schemas.android.com/apk/res/android"> | 10 <menu xmlns:android="http://schemas.android.com/apk/res/android"> |
| 11 <item |
| 12 android:id="@+id/select_action_menu_context_dep" |
| 13 android:title="@null" |
| 14 android:showAsAction="always|withText" |
| 15 /> |
| 11 <item | 16 <item |
| 12 android:id="@+id/select_action_menu_cut" | 17 android:id="@+id/select_action_menu_cut" |
| 13 android:icon="?android:attr/actionModeCutDrawable" | 18 android:icon="?android:attr/actionModeCutDrawable" |
| 14 android:title="@android:string/cut" | 19 android:title="@android:string/cut" |
| 15 android:showAsAction="always|withText" | 20 android:showAsAction="always|withText" |
| 16 android:alphabeticShortcut="x" | 21 android:alphabeticShortcut="x" |
| 17 /> | 22 /> |
| 18 <item | 23 <item |
| 19 android:id="@+id/select_action_menu_copy" | 24 android:id="@+id/select_action_menu_copy" |
| 20 android:icon="?android:attr/actionModeCopyDrawable" | 25 android:icon="?android:attr/actionModeCopyDrawable" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 35 android:showAsAction="always|withText" | 40 android:showAsAction="always|withText" |
| 36 style="@style/SelectActionMenuShare" | 41 style="@style/SelectActionMenuShare" |
| 37 /> | 42 /> |
| 38 <item | 43 <item |
| 39 android:id="@+id/select_action_menu_select_all" | 44 android:id="@+id/select_action_menu_select_all" |
| 40 android:icon="?android:attr/actionModeSelectAllDrawable" | 45 android:icon="?android:attr/actionModeSelectAllDrawable" |
| 41 android:title="@android:string/selectAll" | 46 android:title="@android:string/selectAll" |
| 42 android:showAsAction="always|withText" | 47 android:showAsAction="always|withText" |
| 43 android:alphabeticShortcut="a" | 48 android:alphabeticShortcut="a" |
| 44 /> | 49 /> |
| 45 <group | |
| 46 android:id="@+id/select_action_menu_text_processing_menus"> | |
| 47 </group> | |
| 48 <item | 50 <item |
| 49 android:id="@+id/select_action_menu_web_search" | 51 android:id="@+id/select_action_menu_web_search" |
| 50 android:title="@string/actionbar_web_search" | 52 android:title="@string/actionbar_web_search" |
| 51 android:showAsAction="always|withText" | 53 android:showAsAction="always|withText" |
| 52 style="@style/SelectActionMenuWebSearch" | 54 style="@style/SelectActionMenuWebSearch" |
| 53 /> | 55 /> |
| 56 <group |
| 57 android:id="@+id/select_action_menu_text_processing_menus"> |
| 58 </group> |
| 54 </menu> | 59 </menu> |
| OLD | NEW |