12

Possible Duplicate:
Android Activity Life Cycle - difference between onPause() and OnStop()

What is called before onCreate in android? So that when I click a tab, I can show a loading screen or some functionality before I actually render my next screen.

Community
  • 1
  • 1
max
  • 3,047
  • 5
  • 20
  • 17

1 Answers1

10

onCreate is the first method to be called from activity ...You can show ur loading screen be setting the proper view in your oncreate method.....

check this:

http://developer.android.com/reference/android/app/Activity.html

Vineet Shukla
  • 23,865
  • 10
  • 55
  • 63