Home | History | Annotate | Download | only in menu
      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:appcompat="http://schemas.android.com/apk/res-auto"
     19     xmlns:tools="http://schemas.android.com/tools" >
     20 
     21     <item
     22         android:id="@+id/share_message_menu"
     23         android:title="@string/action_share"
     24         android:icon="@drawable/ic_share_dark"
     25         appcompat:showAsAction="collapseActionView|always" />
     26     <item
     27         android:id="@+id/forward_message_menu"
     28         android:title="@string/message_context_menu_forward_message"
     29         android:icon="@drawable/ic_forward_dark"
     30         appcompat:showAsAction="collapseActionView|always"/>
     31     <item
     32         android:id="@+id/save_attachment"
     33         android:title="@string/save"
     34         android:icon="@drawable/ic_save_dark"
     35         appcompat:showAsAction="collapseActionView|always" />
     36     <item
     37         android:id="@+id/copy_text"
     38         android:title="@string/message_context_menu_copy_text"
     39         android:icon="@drawable/ic_content_copy_dark"
     40         appcompat:showAsAction="collapseActionView|always"/>
     41 
     42     <item
     43         android:id="@+id/details_menu"
     44         android:title="@string/message_context_menu_view_details"
     45         android:icon="@drawable/ic_info_dark"
     46         appcompat:showAsAction="collapseActionView|always"/>
     47 
     48     <item
     49         android:id="@+id/action_send"
     50         android:icon="@drawable/ic_send_dark"
     51         android:title="@string/action_send"
     52         appcompat:showAsAction="collapseActionView|always"/>
     53     <item
     54         android:id="@+id/action_download"
     55         android:icon="@drawable/ic_file_download_dark"
     56         android:title="@string/action_download"
     57         appcompat:showAsAction="collapseActionView|always"/>
     58     <item
     59         android:id="@+id/action_delete_message"
     60         android:icon="@drawable/ic_delete_small_dark"
     61         android:title="@string/action_delete_message"
     62         appcompat:showAsAction="collapseActionView|always"/>
     63 </menu>
     64