Hello. I am trying to make a simple game based on ...
# getting-started
n
Hello. I am trying to make a simple game based on choices. Do I have to make a new empty activity every time I want a new screen to appear when you lcikc a choice or is there any simpler way? Thanks!
c
Are you using #android?
n
Yes, I am using android studio!
What I've been using is using a click listener on a button everytime I want to open a new window and setting up a new activity to redirect it.
c
My point was more that Kotlin != Android 😉 But it is recommended to use a
Fragment
for each screen type, rather than several
Activity
👍 1