Is it bad programming if I use only one Activity for a game like pong? I have different classes to do different tasks and handle touches etc. but I only have one main Activity which changes what is drawn on screen based on user input. I currently only have three views.
Should I use different Activities for all these views or is one MainActivity fine to handle all of them?