I have a Activity
that contains a RecyclerView
, clicking on it opens a Dialog
with the information of the selected item.
And in this Activity
has a FloatingActionButton
, which I want to call a registration screen. What is the best programming practice for calling this screen?
- Calling another
Dialog
responsible for the registration is a good one? - Do I create a
Activity
just to be responsible for the registration? - I call a
Fragment
same?