Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(63)

Side by Side Diff: content/public/android/java/res/menu/select_action_menu.xml

Issue 23672055: [Android] Inflate Select Action Bar from XML. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/public/android/java/res/values-v17/styles.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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>
OLDNEW
« no previous file with comments | « no previous file | content/public/android/java/res/values-v17/styles.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698