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

Submitted by: Muhammad
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.
Submitted by: Muhammad

Read Online Android Developer Job Interview Questions And Answers