Hey people, I'm almost done writing my first Android app. This application is for taking notes with adding, editing viewing screens, etc.
Initially, I handled moving between screens in one action, creating new layout objects such as tables, etc ... and displaying them. However, after some more reading, I changed my way of moving between screens using different actions for different screens. However, each action, which is called an intent, extracts a large number of variables from the main action through setExtra and also returns a large number of variables.
Now I want my application to be as efficient as possible, and I personally believe that processing all of this in one action is less than hungry memory and processor intensity, although this has a negative meaning for the variables that are always present (and consume memory) are disabled in a separate action in which they die at the finish line (). But you guys are more knowledgeable, and then me the way you think the best way to do this?
source
share