mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-05-04 05:32:14 +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.
12 lines
380 B
XML
12 lines
380 B
XML
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
tools:context=".pwdstore">
|
|
|
|
<item android:id="@+id/menu_delete_password"
|
|
android:icon="@drawable/ic_action_discard"
|
|
app:showAsAction="always"
|
|
android:title="Delete"/>
|
|
</menu>
|
|
|