Understanding MVVM Architecture in Android: It’s Simpler Than You Think!

Yugandharkumar
4 min read2 days ago

--

Have you ever wondered how some Android apps feel so smooth and well-organized while others feel like they’re held together by duct tape? Well, the secret often lies in their architecture. One of the most popular architectures in Android is MVVM (Model-View-ViewModel), and today, we’re going to break it down using everyday analogies, some simple code examples, and a bit of fun!

What is MVVM?

Imagine you’re at a fancy restaurant.

  • The Model is the chef in the kitchen. It knows how to cook the food (data), but it doesn’t care about how the food is presented.
  • The View is the waiter who serves you. It only cares about making the food look great on the plate and delivering it to you (the user).
  • The ViewModel is like the restaurant manager. It communicates with the chef and the waiter, ensuring everything flows smoothly. The manager tells the chef what food to cook and updates the waiter about what’s ready to serve.

The Flow in MVVM

  1. You (the user) place an order (interact with the View).
  2. The waiter (View) tells the manager (ViewModel) about your order.
  3. The manager (ViewModel) gets the chef (Model) to prepare the food (data).
  4. Once the food is ready, the manager (ViewModel) informs the waiter (View), who serves it to you.

Why Use MVVM?

Let’s say you want to build a food delivery app. If you mix all the responsibilities (data fetching, UI updates, business logic) in one place, it becomes a tangled mess over time.

MVVM keeps things modular and clean:

  • Model handles data (e.g., API calls, database queries).
  • ViewModel acts as a bridge, processing data for the View.
  • View focuses solely on displaying information and handling user input.

Breaking Down MVVM in Android

Step 1: The Model

This is where your data lives. It could come from an API, database, or a static file. Let’s create a simple Food data class.

data class Food(
val id: Int,
val name: String,
val price: Double
)

Let’s say you fetch this data from an API:

class FoodRepository {
fun getFoods(): List<Food> {
// Simulating API data
return listOf(
Food(1, "Pizza", 8.99),
Food(2, "Burger", 5.49),
Food(3, "Sushi", 12.99)
)
}
}

Step 2: The ViewModel

The ViewModel connects the Model to the View. It fetches the data and prepares it for display.

class FoodViewModel : ViewModel() {
private val repository = FoodRepository()

private val _foods = MutableLiveData<List<Food>>()
val foods: LiveData<List<Food>> get() = _foods

fun loadFoods() {
// Imagine this data is coming from a network or database
_foods.value = repository.getFoods()
}
}

Pro Tip: Always use LiveData in your ViewModel to observe changes in data from the View.

Step 3: The View

The View (e.g., an Activity or Fragment) observes the data and updates the UI.

class FoodActivity : AppCompatActivity() {
private lateinit var viewModel: FoodViewModel

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_food)

// Initialize ViewModel
viewModel = ViewModelProvider(this).get(FoodViewModel::class.java)

// Observe LiveData
viewModel.foods.observe(this) { foods ->
// Update UI with food data
findViewById<RecyclerView>(R.id.recyclerView).adapter =
FoodAdapter(foods)
}

// Load data
viewModel.loadFoods()
}
}

RecyclerView Adapter for the View

Here’s a simple adapter to display the list of foods.

class FoodAdapter(private val foodList: List<Food>) :
RecyclerView.Adapter<FoodAdapter.FoodViewHolder>() {

inner class FoodViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
val foodName = itemView.findViewById<TextView>(R.id.foodName)
val foodPrice = itemView.findViewById<TextView>(R.id.foodPrice)
}

override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): FoodViewHolder {
val view = LayoutInflater.from(parent.context)
.inflate(R.layout.item_food, parent, false)
return FoodViewHolder(view)
}

override fun onBindViewHolder(holder: FoodViewHolder, position: Int) {
val food = foodList[position]
holder.foodName.text = food.name
holder.foodPrice.text = "$${food.price}"
}

override fun getItemCount(): Int = foodList.size
}

Architecture Image

Here’s a visual representation of the MVVM architecture to help you understand the flow:

Wrapping It Up

So there you have it — MVVM in Android broken down into simple, digestible pieces. To summarize:

  • Model: Handles the data (the chef).
  • ViewModel: Prepares the data for the UI and manages the app’s logic (the manager).
  • View: Displays the data to the user and handles interactions (the waiter).

Why should you care? Because MVVM makes your app scalable, testable, and easier to maintain.

Takeaways

  • Start small: Try MVVM in one screen of your app.
  • Use ViewModel and LiveData to manage UI-related data.
  • Keep the responsibilities clear: let the ViewModel handle business logic and the View handle UI.

And remember, just like cooking, good architecture is all about balance. So next time you build an app, think about the chef, waiter, and manager — your app will thank you for it!

What do you think? Have you tried MVVM yet? Share your experiences (or questions) in the comments below! 😊

--

--

Yugandharkumar
Yugandharkumar

Written by Yugandharkumar

Android DEV skilled in Kotlin, Jetpack Compose, and MVVM. Passionate about building intuitive apps and exploring new tech. Let’s create something amazing! 🚀

No responses yet