Chromium Code Reviews| 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_assist" | |
| 13 android:title="@null" | |
| 14 android:showAsAction="always|withText" | |
| 15 android:orderInCategory="1" | |
|
Ted C
2017/03/29 17:43:50
from the earlier comment, do we still need the ord
Tima Vaisburd
2017/03/29 22:56:37
Yes, after Android requested to use a particular I
| |
| 16 /> | |
| 11 <item | 17 <item |
| 12 android:id="@+id/select_action_menu_cut" | 18 android:id="@+id/select_action_menu_cut" |
| 13 android:icon="?android:attr/actionModeCutDrawable" | 19 android:icon="?android:attr/actionModeCutDrawable" |
| 14 android:title="@android:string/cut" | 20 android:title="@android:string/cut" |
| 15 android:showAsAction="always|withText" | 21 android:showAsAction="always|withText" |
| 16 android:alphabeticShortcut="x" | 22 android:alphabeticShortcut="x" |
| 23 android:orderInCategory="2" | |
| 17 /> | 24 /> |
| 18 <item | 25 <item |
| 19 android:id="@+id/select_action_menu_copy" | 26 android:id="@+id/select_action_menu_copy" |
| 20 android:icon="?android:attr/actionModeCopyDrawable" | 27 android:icon="?android:attr/actionModeCopyDrawable" |
| 21 android:title="@android:string/copy" | 28 android:title="@android:string/copy" |
| 22 android:showAsAction="always|withText" | 29 android:showAsAction="always|withText" |
| 23 android:alphabeticShortcut="c" | 30 android:alphabeticShortcut="c" |
| 31 android:orderInCategory="3" | |
| 24 /> | 32 /> |
| 25 <item | 33 <item |
| 26 android:id="@+id/select_action_menu_paste" | 34 android:id="@+id/select_action_menu_paste" |
| 27 android:icon="?android:attr/actionModePasteDrawable" | 35 android:icon="?android:attr/actionModePasteDrawable" |
| 28 android:title="@android:string/paste" | 36 android:title="@android:string/paste" |
| 29 android:showAsAction="always|withText" | 37 android:showAsAction="always|withText" |
| 30 android:alphabeticShortcut="v" | 38 android:alphabeticShortcut="v" |
| 39 android:orderInCategory="4" | |
| 31 /> | 40 /> |
| 32 <item | 41 <item |
| 33 android:id="@+id/select_action_menu_share" | 42 android:id="@+id/select_action_menu_share" |
| 34 android:title="@string/actionbar_share" | 43 android:title="@string/actionbar_share" |
| 35 android:showAsAction="always|withText" | 44 android:showAsAction="always|withText" |
| 36 style="@style/SelectActionMenuShare" | 45 style="@style/SelectActionMenuShare" |
| 46 android:orderInCategory="5" | |
| 37 /> | 47 /> |
| 38 <item | 48 <item |
| 39 android:id="@+id/select_action_menu_select_all" | 49 android:id="@+id/select_action_menu_select_all" |
| 40 android:icon="?android:attr/actionModeSelectAllDrawable" | 50 android:icon="?android:attr/actionModeSelectAllDrawable" |
| 41 android:title="@android:string/selectAll" | 51 android:title="@android:string/selectAll" |
| 42 android:showAsAction="always|withText" | 52 android:showAsAction="always|withText" |
| 43 android:alphabeticShortcut="a" | 53 android:alphabeticShortcut="a" |
| 54 android:orderInCategory="6" | |
| 44 /> | 55 /> |
| 45 <group | |
| 46 android:id="@+id/select_action_menu_text_processing_menus"> | |
| 47 </group> | |
| 48 <item | 56 <item |
| 49 android:id="@+id/select_action_menu_web_search" | 57 android:id="@+id/select_action_menu_web_search" |
| 50 android:title="@string/actionbar_web_search" | 58 android:title="@string/actionbar_web_search" |
| 51 android:showAsAction="always|withText" | 59 android:showAsAction="always|withText" |
| 52 style="@style/SelectActionMenuWebSearch" | 60 style="@style/SelectActionMenuWebSearch" |
| 61 android:orderInCategory="7" | |
| 53 /> | 62 /> |
| 63 <group | |
| 64 android:id="@+id/select_action_menu_text_processing_menus" | |
| 65 android:orderInCategory="8"> | |
| 66 </group> | |
| 54 </menu> | 67 </menu> |
| OLD | NEW |