Home | History | Annotate | Download | only in menu
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2013 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 <!-- Context menu used when user right clicks on a file with a selection that doesn't have folders.
     18     The selection may be empty. -->
     19 <menu xmlns:android="http://schemas.android.com/apk/res/android">
     20     <group
     21         android:id="@+id/menu_open_group">
     22         <item
     23             android:id="@+id/dir_menu_share"
     24             android:title="@string/menu_share" />
     25         <item
     26             android:id="@+id/dir_menu_open"
     27             android:title="@string/menu_open" />
     28         <item
     29             android:id="@+id/dir_menu_open_with"
     30             android:title="@string/menu_open_with" />
     31     </group>
     32 
     33     <group
     34         android:id="@+id/menu_clipboard_group">
     35         <item
     36             android:id="@+id/dir_menu_cut_to_clipboard"
     37             android:title="@string/menu_cut_to_clipboard" />
     38         <item
     39             android:id="@+id/dir_menu_copy_to_clipboard"
     40             android:title="@string/menu_copy_to_clipboard" />
     41     </group>
     42 
     43     <group
     44         android:id="@+id/menu_modifier_group">
     45         <item
     46             android:id="@+id/dir_menu_rename"
     47             android:title="@string/menu_rename" />
     48         <item
     49             android:id="@+id/dir_menu_delete"
     50             android:title="@string/menu_delete" />
     51     </group>
     52     <group
     53         android:id="@+id/menu_settings_group">
     54         <item
     55             android:id="@+id/dir_menu_view_in_owner"
     56             android:title="@string/menu_view_in_owner" />
     57     </group>
     58 </menu>
     59