Let's first look at some common exit methods (inelegant ways) 1. Container Type Create a global container to store all Activities, and loop through all Activities when exiting
This method is relatively simple, but you can see that activityStack holds a strong reference to the Activity, which means that when an Activity exits abnormally, activityStack does not release the reference immediately, which will cause memory problems. Next, let's look at a similar method, but it will be a little more elegant. 2. Broadcast By registering a broadcast in BaseActivity, a broadcast is sent when exiting, and finish exiting
3. Process End the application by directly killing the current application process. It is simple, crude, and effective!
All three methods can achieve the same effect, but on the simulator, a message box "Unfortunately, XXX has stopped" will pop up, but the app can indeed be exited. Some real devices will fail directly and can only finish the current Activity (such as the Xiaomi Note in my hand. Several domestic ROM fw layers have too many changes, so use this method with caution) 4. RS Elegant Style What is RS style? It is Receiver+singleTask. We know that there are four loading modes for Activity, and singleTask is one of them. After using this mode, when starting Activity, it will first query whether there is an instance of Activity in the current stack. If it exists, it will be placed on the top of the stack and all the Activities above it will be removed from the stack. When we open an app, the first thing is a splash page, and then the splash page will be finished. Jump to the home page. Then it will jump to the home page N times, during which an indefinite number of Activities will be generated, some of which will be destroyed, and some will reside in the stack, but the bottom of the stack will always be our HomeActivity. This makes the problem much simpler. We only need two steps to exit the app elegantly. 1. Register an exit broadcast in HomeActivity, which is the same as the second broadcast, but here you only need to register on one page of HomeActivity. 2. Set the startup mode of HomeActivity to singleTask. When we need to exit, we only need to startActivity(this,HomeActivity,class), and then send an exit broadcast. The above code will first remove all Activities above HomeActivity from the stack, and then receive the broadcast and finish itself. Everything is OK! No pop-up window, no need to consider model Rom adaptation. There will be no memory problem, it is so elegant and simple! 5. SingleTask Redesign After communicating with some guys, many of them said that registering for broadcasting was a bit troublesome. The guy downstairs proposed a simpler way, and the idea was also very simple. 1. Set the loading mode of MainActivity to singleTask 2. Rewrite the onNewIntent method in MainActivity 3. Add an exit tag to the Intent when you need to exit Since many friends are eager for source code, we will explain this method directly in the form of code. The first step is to set the loading mode of MainActivity to singleTask
The second step is to rewrite the onNewIntent() method
Step 3 Exit
6. Lazy Style This method is simpler and only requires the following two steps 1. Set MainActivity as singleTask 2. Place the exit in MainActivity We can see that many applications double-click the home button twice to exit the application, which is implemented in this way. Here is the source code for how to handle two consecutive clicks to exit private boolean mIsExit;
|
<<: Withstand 10 billion requests! Make a "sure" red envelope system
>>: Tutorial on using TensorFlow on iOS (Part 1)
Recently, new cases have appeared in Shanghai, Jil...
Part 01 What is KCP Protocol KCP is an open sourc...
Precision Telemarketing - Low-cost Telemarketing ...
Which products are hot-selling in Category II e-c...
There are unknown secrets behind every screen-swe...
After this attempt, we can basically draw the fol...
Today’s article is the first in a series of artic...
A good product may not be known to anyone. After ...
We all know what the role of creativity is - to a...
It is no longer a new thing for brands to sell pr...
In order to better penetrate into various industr...
IT Home reported on April 7 that in order to carr...
I'm Zongzi, a post-90s planner who combines ...
I believe that most SEMers are familiar with the ...
With the rapid development of the Internet, peopl...