Android Developer Question: Download Android Developer PDF

Tell us why would you do the setContentView() in onCreate() of Activity class?

Tweet Share WhatsApp

Answer:

As onCreate() of an Activity is called only once, this is the point where most initialisation should go. It is inefficient to set the content in onResume() or onStart() (which are called multiple times) as the setContentView() is a heavy operation.

Download Android Developer PDF Read All 56 Android Developer Questions
Previous QuestionNext Question
Please explain what is a Sticky Intent?Tell us what is a BuildType in Gradle? And what can you use it for?