all_in_one_title_bar.xml revision 2aeb8d988aa4b65d3402374832613ab977e009dc
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<menu
18    xmlns:android="http://schemas.android.com/apk/res/android">
19    <item android:id="@+id/action_search"
20        android:alphabeticShortcut="f"
21        android:title="@string/search"
22        android:icon="@drawable/ic_menu_search_holo_light"
23        android:showAsAction="never"
24        android:actionViewClass="android.widget.SearchView" />
25    <item
26        android:id="@+id/action_today"
27        android:alphabeticShortcut="t"
28        android:title="@string/goto_today"
29        android:icon="@drawable/ic_menu_today_holo_light"
30        android:showAsAction="always" />
31    <item
32        android:id="@+id/action_create_event"
33        android:alphabeticShortcut="n"
34        android:title="@string/event_create"
35        android:icon="@drawable/ic_menu_add_event_holo_light"
36        android:showAsAction="never" />
37    <item
38        android:id="@+id/action_refresh"
39        android:alphabeticShortcut="r"
40        android:title="@string/calendar_refresh"
41        android:icon="@drawable/ic_menu_refresh_holo_light" />
42    <item
43        android:id="@+id/action_select_visible_calendars"
44        android:title="@string/menu_select_visible_calendars"
45        android:icon="@drawable/ic_menu_select_visible_calendars_holo_light"
46        android:showAsAction="never" />
47    <item
48        android:id="@+id/action_settings"
49        android:alphabeticShortcut="s"
50        android:title="@string/menu_preferences"
51        android:icon="@drawable/ic_menu_settings_holo_light" />
52</menu>
53