summaryrefslogtreecommitdiff
path: root/actionbarsherlock-samples/fragments/res/menu/shortcuts.xml
diff options
context:
space:
mode:
Diffstat (limited to 'actionbarsherlock-samples/fragments/res/menu/shortcuts.xml')
-rwxr-xr-xactionbarsherlock-samples/fragments/res/menu/shortcuts.xml60
1 files changed, 60 insertions, 0 deletions
diff --git a/actionbarsherlock-samples/fragments/res/menu/shortcuts.xml b/actionbarsherlock-samples/fragments/res/menu/shortcuts.xml
new file mode 100755
index 0000000..b5e938a
--- /dev/null
+++ b/actionbarsherlock-samples/fragments/res/menu/shortcuts.xml
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2008 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<menu xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <item android:id="@+id/invisible_item"
+ android:visible="false"
+ android:alphabeticShortcut="i"
+ android:title="Invisible item" />
+
+ <item android:id="@+id/a_item"
+ android:alphabeticShortcut="a"
+ android:title="Alvin" />
+
+ <item android:id="@+id/b_item"
+ android:alphabeticShortcut="b"
+ android:title="Bart" />
+
+ <item android:id="@+id/c_item"
+ android:alphabeticShortcut="c"
+ android:title="Chris" />
+
+ <item android:id="@+id/d_item"
+ android:alphabeticShortcut="d"
+ android:title="David" />
+
+ <item android:id="@+id/e_item"
+ android:alphabeticShortcut="e"
+ android:title="Eric" />
+
+ <item android:id="@+id/f_item"
+ android:alphabeticShortcut="f"
+ android:title="Frank" />
+
+ <item android:id="@+id/g_item"
+ android:alphabeticShortcut="g"
+ android:title="Gary" />
+
+ <item android:id="@+id/h_item"
+ android:alphabeticShortcut="h"
+ android:title="Henry" />
+
+ <item android:id="@+id/excl_item"
+ android:alphabeticShortcut="!"
+ android:title="Exclamation" />
+
+</menu>