I want to create a diagram / visual representation of the different Android Activities I have. Each Activity consists of different components:
- A Java-Class like
LoginActivity
which might extends something likeAppCompatActivity
- One or more
Resource
XML files - Maybe
Fragements
My first question would be: Which diagram is the best one to visualize these components? The UML component diagram?
In additon to that: If I also want to show a bit more from the functional perspective (for example the Login might have two Activities, one for the Login and another one for 2-factor-auth), what would you suggest?
Or will I end up with a simple self-made diagram (normal shapes)?