Mike Dodd | d3b009a | 2015-08-11 11:16:59 -0700 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2015 The Android Open Source Project |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | --> |
| 17 | <menu xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | xmlns:tools="http://schemas.android.com/tools" |
| 19 | xmlns:appcompat="http://schemas.android.com/apk/res-auto" |
| 20 | tools:context="com.android.messaging.ConversationActivity" > |
| 21 | |
| 22 | <item |
| 23 | android:id="@+id/action_call" |
| 24 | android:icon="@drawable/ic_phone_small_light" |
| 25 | android:orderInCategory="80" |
| 26 | android:title="@string/action_call" |
| 27 | appcompat:showAsAction="ifRoom"/> |
| 28 | |
| 29 | <item |
| 30 | android:id="@+id/action_add_contact" |
| 31 | android:icon="@drawable/ic_person_add_light" |
| 32 | android:orderInCategory="90" |
| 33 | android:title="@string/action_add_contact" |
| 34 | android:showAsAction="never"/> |
| 35 | |
| 36 | <item |
| 37 | android:id="@+id/action_people_and_options" |
| 38 | android:orderInCategory="100" |
| 39 | android:title="@string/action_people_and_options" |
| 40 | appcompat:showAsAction="never"/> |
| 41 | |
| 42 | <item |
| 43 | android:id="@+id/action_archive" |
| 44 | android:orderInCategory="120" |
| 45 | android:title="@string/action_archive" |
| 46 | android:showAsAction="never"/> |
| 47 | |
| 48 | <item |
| 49 | android:id="@+id/action_unarchive" |
| 50 | android:orderInCategory="130" |
| 51 | android:title="@string/action_unarchive" |
| 52 | android:showAsAction="never"/> |
| 53 | |
| 54 | <item |
| 55 | android:id="@+id/action_delete" |
| 56 | android:orderInCategory="140" |
| 57 | android:title="@string/action_delete" |
| 58 | android:showAsAction="never"/> |
| 59 | |
| 60 | </menu> |