Skip to content
InterviewEra
Loading account navigation
InterviewEra

InterviewEra is an AI-powered mock interview platform with adaptive follow-ups, resume-aware scoring, and structured interview preparation for campus placements and early-career hiring.

Start Mock Interview

Product

  • How It Works
  • For Teams
  • Start Mock Interview
  • Campus Placements
  • Campus Workspace
  • Help Center

Tools

  • Interview Question Generator
  • ATS Resume Checker
  • STAR Answer Builder

Resources

  • Interview Questions
  • All Resources
  • Blog
  • Community Hub
  • DSA Topic Map
  • Placement Guide
  • STAR Guide

Company

  • What is InterviewEra
  • About Us
  • Pricing
  • Contact
  • Privacy Policy
  • Terms & Conditions
  • Refund Policy

© 2026 InterviewEra. All rights reserved.

Privacy Policy|Terms & Conditions|Refund Policy
|Ranchi, Jharkhand, India
Interview Questions›Topics›Android Development

Mobile · Fresher-relevant

Android Development Interview Questions 2026

Android development interview questions on Activity/Fragment lifecycle, Jetpack components, RecyclerView, and Kotlin coroutines.

MobileFresher-relevant

Android Development Interview Questions

Placement-oriented · Updated 2026
  1. 01

    What are the four main components of an Android application?

    TechnicalEasy

    Tip: Activity (UI screen), Service (background work), BroadcastReceiver (system/app events), and ContentProvider (shared data). Each is declared in AndroidManifest.xml — interviewers map scenarios to the right component.

  2. 02

    Explain the Android Activity lifecycle. When is onStop called vs onPause?

    TechnicalEasy

    Tip: onPause runs when the activity is partially obscured; onStop when it is fully hidden; onDestroy when it is torn down. Persist fragile UI state in onPause because onStop is not guaranteed on low-memory kills.

  3. 03

    What is the difference between Fragment and Activity?

    TechnicalEasy

    Tip: Activity is a standalone screen entry point. Fragment is a reusable UI module hosted inside an Activity — ideal for adaptive layouts and Navigation Component graphs.

  4. 04

    What are Jetpack components? Name and explain three commonly used ones.

    TechnicalMedium

    Tip: ViewModel survives configuration changes; Room is a type-safe SQLite layer; Navigation Component handles fragment transactions declaratively. LiveData/StateFlow expose lifecycle-aware streams to the UI.

  5. 05

    What are Kotlin coroutines? How do they differ from threads?

    TechnicalMedium

    Tip: Coroutines suspend cooperatively without blocking a thread — many coroutines can share one thread. Use viewModelScope.launch with Dispatchers.IO for network/DB and Dispatchers.Main for UI updates.

  6. 06

    What is RecyclerView and how does the ViewHolder pattern help performance?

    TechnicalMedium

    Tip: RecyclerView recycles item views as rows scroll off-screen. ViewHolder caches findViewById lookups so binding work happens once per row type, not on every scroll frame.

  7. 07

    What is MVVM on Android and why do teams adopt it?

    TechnicalMedium

    Tip: MVVM separates UI (Activity/Fragment/Compose) from ViewModel state and Repository data access. It improves testability, survives rotation via ViewModel scope, and keeps networking off the main thread.

  8. 08

    How do you ensure backward compatibility across Android API levels?

    TechnicalMedium

    Tip: Use AndroidX for backported APIs, guard newer APIs with SDK_INT checks or @RequiresApi, set a realistic minSdk, and test emulators at min and target SDK. Runtime permissions matter from API 23 onward.

Practice Android questions with your own resume

InterviewEra generates role-specific questions using your actual projects and skills. Get scored feedback on technical depth, clarity, and structure — free to start.

Start free mock interviewFree question generator

Roles that need Android

  • Android Developer questions

Related mobile topics

  • iOS Development questions

Practice tools

  • Interview question generator
  • ATS resume checker
  • STAR answer builder

Guides and resources

  • All interview questions
  • HR interview answer tips
  • STAR method with examples