mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-04-28 21:47:39 +02:00
Previously most of the icons looked a bit cobbled together and not very Android-y. This PR replaces them with semantically equivalent icons from Google's Iconography recommendations. This aligns Android-Password-Store more with Google's design recommendations and other Android apps.
11 lines
420 B
XML
11 lines
420 B
XML
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:pwstore="http://schemas.android.com/apk/res-auto"
|
|
tools:context="com.zeapo.pwdstore.crypto.PgpHandler" >
|
|
<item android:title="Copy password"
|
|
android:icon="@drawable/ic_action_copy"
|
|
pwstore:showAsAction="ifRoom"
|
|
android:id="@+id/copy_password"
|
|
/>
|
|
</menu>
|