Posts by Rogerio • 1 point
1 post
-
0
votes4
answers374
viewsA: Is it recommended to use more than one Activity in an Android project?
Better use an Activity for each screen. If you use methods to inflate another layout, you will be carrying the baggage of the previous layout, such as open database, visible keyboard, etc. It is…