What are the design guidelines for duplicating an item in a RecyclerView
?
I already implemented the following gestures:
- Swipe right: remove item
- Click: open another Activity with item details
- Long click: reorder items
My idea for duplicating an item:
- Swipe left: I think the user would never know without me telling him. Also, does not seem to be intuitive to me
- Double tap: I heard it is against the guidelines
- Long click: out of question because it is reserved for triggering the reorder operation
- a seperate (Button) View within the item with an
onClick
event (seems legit, but messes up the design (because of the redundance) if anyRecylcerView
item has one. Leaving this button invisible by default and triggering it to appear would also not be efficient or intuitive in my eyes.) - ???
What should I do?
Please don't mind the data in those examples. It is just test data.
Current design:
Design with additional buttons (just to show my point, no final design):
In my opinion it is redundant to have the same button over and over again. It just does not look good.
Look at it live, if you want.