good ux design patterns to add/edit/remove entities in a mobile app?
I'm looking for Android apps which have good entity management (add/edit/remove) UX. The home page of my app displays a list of configured entity instances. Now I need to give the user the ability to add/edit/remove these entity instances. There could be a "Manage Entities" menu item in the left Drawer menu which would open a "Manage Entities" screen with the following design:
- The screen could display a search input supporting autosearch.
- The search input could display an Add button below it to support an Add scenario.
- Autosearch would return a list of matching entity list items below it on the screen.
- Each entity item in the list could have a checkbox on the left. When a user selects one or more entity items a Delete button could be rendered at the bottom of the screen.
- Each entity list item could include an Edit button at the bottom.
These are just off the cuff ideas about how something like this could potentially work. I'm looking for good Android apps which demonstrate a good implementation of these types of UX design patterns so I can decide the approach that I want to take in my own mobile app.