Delete some space and unused char (#21931)
This commit is contained in:
committed by
Christopher McCormack
parent
99b3079019
commit
61f1fd4bbb
@@ -43,7 +43,8 @@ An _activity_ is a component that has a user interface and represents a single s
|
||||
|
||||
* onDestroy():
|
||||
|
||||
> The final call you receive before your activity is destroyed. This can happen either because the activity is finishing (someone called finish() on it), or because the system is temporarily destroying this instance of the activity to save space. You can distinguish between these two scenarios with the isFinishing() method. This call is often used when the user hits the back button, or closes the instance of the app.
|
||||
> The final call you receive before your activity is destroyed. This can happen either because the activity is finishing (someone called finish() on it), or because the system is temporarily destroying this instance of the activity to save space. You can distinguish between these two scenarios with the isFinishing() method.
|
||||
This call is often used when the user hits the back button, or closes the instance of the app.
|
||||
|
||||
#### Sample code to understand Activity Lifecycle
|
||||
``` java
|
||||
|
Reference in New Issue
Block a user