문제

When I open an activity I know that I can initialize stuff in the onCreate function.

But what is the behaviour on the OnResume and onRestart function? When are these functions called?

Specifically: I initialize a local member variable in the onCreate function auiqring a reference to a global object. Now, when the user is interrupted, for example, by a call, the activity can be closed. Later, when the user comes back to my view, what is the status of the already initiliazed variable? Do I have to reinitialize everything in the onResume/onRestart functions? So what would be the functional difference opposed to onCreate?

도움이 되었습니까?

해결책

  • onCreate: Activity launched for the first time. Here is where you may initialize your stuff.
  • onResume: User returns to the activity after another activity comes into foreground. (onPause)
  • onRestart: User navigates to the activity after it's no longer visible (onStop).

You can see the complete lifecycle on Activity documentation. Your activity stuff would only be lost when onDestroy is called, which happens when you finish it, or when it's destroyed by the system (i.e. when apps with higher priority need memory)

다른 팁

Suppose a dialogue is initiated from your current activity the main window(Activity) will goes to the onPause State. Once you force activity to be in background(Suppose you press home button) The Activity will goes to onPause State.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top