1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2014 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 xmlns:android="http://schemas.android.com/apk/res/android"> 18 <!-- Icon and titles are set in code for menu_star and menu_edit --> 19 20 <item 21 android:id="@+id/menu_star" 22 android:showAsAction="always" /> 23 24 <item 25 android:id="@+id/menu_edit" 26 android:showAsAction="always" /> 27 28 <item 29 android:id="@+id/menu_join" 30 android:title="@string/menu_joinAggregate" /> 31 32 <item 33 android:id="@+id/menu_linked_contacts" 34 android:title="@string/menu_linkedContacts" /> 35 36 <item 37 android:id="@+id/menu_delete" 38 android:title="@string/menu_deleteContact" /> 39 40 <item 41 android:id="@+id/menu_share" 42 android:title="@string/menu_share" 43 android:alphabeticShortcut="s" /> 44 45 <item 46 android:id="@+id/menu_create_contact_shortcut" 47 android:title="@string/menu_create_contact_shortcut" /> 48 49 <item 50 android:id="@+id/menu_set_ringtone" 51 android:title="@string/menu_set_ring_tone" /> 52 53 <item 54 android:id="@+id/menu_send_to_voicemail" 55 android:title="@string/menu_redirect_calls_to_vm"/> 56 57 <item 58 android:id="@+id/menu_help" 59 android:title="@string/menu_help" /> 60</menu> 61