Member-only story

Android Interview Question Answer : Fragment and Activity Explained

Harshita Bambure
3 min readJan 29, 2025

--

Continue your Android interview preparation with Part 4 of our series! Covering advanced concepts, best practices, and real-world Android development interview questions. Read Part 3 here link on Retrofit

Fragment and Activity

What is a Fragment? How does it differ from an Activity?

  • A Fragment is a reusable UI component that can be embedded in an Activity. while activity is an independent component that can not be loaded in another activity.

What is the lifecycle events/method’s of an Activity in sequence?

  • Method/Event in sequence
  • onCreate(), onStart(), onResume(), onPause(), onStop(), onDestroy().
  • while closing activity what event called: The onPause(), onStop(), and onDestroy() methods are called in that order while closing activity.

What is the lifecycle events/method of a Fragment in sequance ?

onAttach(), onCreate(), onCreateView(), onViewCreated(), onStart(), onResume(), onPause(), onStop(), onDestroyView(), onDestroy(), onDetaWch().

In what scenario does the onDestroy get called directly after onCreate?

When you write the finish() method in onCreate() then it only gets called

What is the difference between onCreate() and onStart() in an Activity?

  • The onCreate() method is…

--

--

Harshita Bambure
Harshita Bambure

Written by Harshita Bambure

Android Developer || WomenTech Global Ambassador at WomenTech Network. || Yoga Teacher || Member @WTM .

No responses yet