-1
I have a Activity
containing a RecyclerView
, by clicking on it opens a Dialog
with the selected item information.
And in that Activity
has a FloatingActionButton
, I want you to call a registration screen. What is the best practice of programming to call this screen?
- Call another
Dialog
responsible for the register is a good? - I create a
Activity
only to be responsible for the registration? - I call a
Fragment
even?