mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-06-03 13:20:35 +00:00
Overhaul entry interaction
Add support for different card background colors Add minor bug fixes Add minor fixes Fix minor bugs where action mode kept active
This commit is contained in:
parent
087bf08d44
commit
2407b4b780
16 changed files with 246 additions and 117 deletions
18
app/src/main/res/menu/menu_action_mode.xml
Normal file
18
app/src/main/res/menu/menu_action_mode.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item
|
||||
android:id="@+id/action_edit"
|
||||
android:orderInCategory="90"
|
||||
android:icon="@drawable/ic_mode_edit"
|
||||
android:title="Edit"
|
||||
app:showAsAction="always" />
|
||||
|
||||
<item
|
||||
android:id="@+id/action_delete"
|
||||
android:title="@string/action_delete"
|
||||
android:orderInCategory="100"
|
||||
android:icon="@drawable/ic_delete_white"
|
||||
android:tint="?attr/iconColorPrimary"
|
||||
app:showAsAction="always"/>
|
||||
</menu>
|
Loading…
Add table
Add a link
Reference in a new issue