• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2024 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    <item
21        android:id="@+id/dir_menu_extract_here"
22        android:title="@string/menu_extract_here"
23        android:visible="false" />
24    <item
25        android:id="@+id/dir_menu_browse"
26        android:title="@string/menu_browse"
27        android:visible="false" />
28
29    <group
30        android:id="@+id/menu_open_group">
31        <item
32            android:id="@+id/dir_menu_share"
33            android:title="@string/menu_share" />
34        <item
35            android:id="@+id/dir_menu_open"
36            android:title="@string/menu_open" />
37        <item
38            android:id="@+id/dir_menu_open_with"
39            android:title="@string/menu_open_with" />
40    </group>
41
42    <group
43        android:id="@+id/menu_clipboard_group">
44        <item
45            android:id="@+id/dir_menu_cut_to_clipboard"
46            android:title="@string/menu_cut_to_clipboard" />
47        <item
48            android:id="@+id/dir_menu_copy_to_clipboard"
49            android:title="@string/menu_copy_to_clipboard" />
50        <item
51            android:id="@+id/dir_menu_compress"
52            android:title="@string/menu_compress" />
53    </group>
54
55    <group
56        android:id="@+id/menu_modifier_group">
57        <item
58            android:id="@+id/dir_menu_rename"
59            android:title="@string/menu_rename" />
60        <item
61            android:id="@+id/dir_menu_delete"
62            android:title="@string/menu_delete" />
63    </group>
64
65    <group
66        android:id="@+id/menu_extras_group">
67        <item
68            android:id="@+id/dir_menu_inspect"
69            android:title="@string/menu_inspect" />
70        <item
71            android:id="@+id/dir_menu_view_in_owner"
72            android:title="@string/menu_view_in_owner" />
73    </group>
74</menu>
75