blob: a8b6a524fd701c879ac6440c72d7910fe63f507f (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!--
~ Copyright © 2014-2024 The Android Password Store Authors. All Rights Reserved.
~ SPDX-License-Identifier: GPL-3.0-only
-->
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:pwstore="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".ui.crypto.PgpActivity">
<item
android:id="@+id/share_password_as_plaintext"
android:icon="@drawable/ic_share_24dp"
android:title="@string/share_as_plaintext"
android:visible="false"
pwstore:showAsAction="ifRoom" />
<item
android:id="@+id/copy_password"
android:icon="@drawable/ic_content_copy"
android:title="@string/copy_password"
android:visible="false"
pwstore:showAsAction="ifRoom" />
<item
android:id="@+id/edit_password"
android:icon="@drawable/ic_edit_24dp"
android:title="@string/edit_password"
android:visible="false"
pwstore:showAsAction="ifRoom" />
</menu>
|