Introduce a separate menu for AssignIconsActivity

Apparently this was using ``menu_groups``, probably a copy-paste error.

This also moves ``AssignIconsActivity`` to the right package.
This commit is contained in:
Alexander Bakker 2023-09-18 22:31:38 +02:00
parent 305e157fc5
commit 03f1a0e8ab
6 changed files with 16 additions and 8 deletions

View file

@ -5,7 +5,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/background"
tools:context="com.beemdevelopment.aegis.AssignIconsActivity">
tools:context="com.beemdevelopment.aegis.ui.AssignIconsActivity">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"

View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.beemdevelopment.aegis.ui.AssignIconsActivity">
<item
android:id="@+id/action_save"
app:showAsAction="always"
android:title="@string/save"/>
</menu>