MVVM vs MVI no Android: Qual Arquitetura Escolher em 2026?
Comparação aprofundada entre MVVM e MVI no Android: vantagens, limitações, casos de uso e um guia prático para escolher a arquitetura certa em 2026.

Escolher a arquitetura correta é uma decisão crucial que impacta a manutenibilidade, a testabilidade e a escalabilidade de uma aplicação Android. Em 2026, dois padrões dominam o ecossistema: MVVM, o padrão da indústria, e MVI, a abordagem reativa que ganha força com o Jetpack Compose.
Uma má escolha de arquitetura é cara: dívida técnica, bugs difíceis de reproduzir e refatorações dolorosas. Compreender os pontos fortes e fracos de cada abordagem evita muitas dores de cabeça a longo prazo.
Entendendo o MVVM: O Padrão Estabelecido
MVVM (Model-View-ViewModel) é a arquitetura recomendada pelo Google desde a introdução do Jetpack. Ela separa as responsabilidades em três camadas distintas, tornando o código mais organizado e testável.
Princípios Fundamentais do MVVM
O padrão MVVM baseia-se em uma separação clara: o Model gerencia dados e lógica de negócio, a View exibe a interface, e o ViewModel faz a ponte entre os dois expondo estados observáveis.
A seguir, implementa-se uma tela de perfil de usuário com MVVM. Este primeiro exemplo mostra a estrutura básica com um ViewModel que expõe estado observável e métodos para interações do usuário.
// Classic MVVM ViewModel for a user profile screen
// It exposes observable state and methods for actions
class UserProfileViewModel(
private val userRepository: UserRepository,
private val analyticsTracker: AnalyticsTracker
) : ViewModel() {
// Observable state with StateFlow - the View observes these changes
private val _uiState = MutableStateFlow(UserProfileState())
val uiState: StateFlow<UserProfileState> = _uiState.asStateFlow()
// Separate loading state - MVVM allows multiple flows
private val _isLoading = MutableStateFlow(false)
val isLoading: StateFlow<Boolean> = _isLoading.asStateFlow()
// One-shot error messages
private val _errorMessage = MutableSharedFlow<String>()
val errorMessage: SharedFlow<String> = _errorMessage.asSharedFlow()
// Initial profile loading
fun loadProfile(userId: String) {
viewModelScope.launch {
_isLoading.value = true
try {
// Repository call to fetch data
val user = userRepository.getUser(userId)
// Update state with new data
_uiState.update { currentState ->
currentState.copy(
user = user,
isEditing = false
)
}
// Analytics tracking
analyticsTracker.trackProfileViewed(userId)
} catch (e: Exception) {
// Emit one-shot error message
_errorMessage.emit("Unable to load profile")
} finally {
_isLoading.value = false
}
}
}
// Enable edit mode
fun enableEditMode() {
_uiState.update { it.copy(isEditing = true) }
}
// Save profile changes
fun saveProfile(name: String, bio: String) {
viewModelScope.launch {
_isLoading.value = true
try {
val updatedUser = userRepository.updateUser(
_uiState.value.user?.id ?: return@launch,
name = name,
bio = bio
)
_uiState.update {
it.copy(user = updatedUser, isEditing = false)
}
} catch (e: Exception) {
_errorMessage.emit("Failed to save profile")
} finally {
_isLoading.value = false
}
}
}
}
// Data class representing the screen state
data class UserProfileState(
val user: User? = null,
val isEditing: Boolean = false
)Este ViewModel ilustra a abordagem MVVM típica: múltiplos flows observáveis (estado principal, carregamento, erros) e métodos públicos para cada ação do usuário.
Vantagens do MVVM
O MVVM possui pontos fortes que explicam sua adoção massiva:
- Familiaridade: A maioria dos desenvolvedores Android conhece esse padrão
- Flexibilidade: A estrutura do estado é completamente livre
- Ecossistema: Integração perfeita com Jetpack (LiveData, StateFlow, Hilt)
- Simplicidade: Curva de aprendizado suave para iniciantes
O MVVM é especialmente adequado para equipes mistas com desenvolvedores de diferentes níveis. Sua simplicidade conceitual facilita a integração de novos membros.
Limitações do MVVM
Porém, o MVVM mostra suas limitações conforme a aplicação cresce. O principal problema é o gerenciamento de estado distribuído. O exemplo a seguir ilustra esse problema comum:
// Example MVVM ViewModel with fragmented state
// This pattern becomes problematic as the screen grows in complexity
class CheckoutViewModel : ViewModel() {
// Problem: state scattered across multiple flows
private val _cart = MutableStateFlow<List<CartItem>>(emptyList())
private val _selectedAddress = MutableStateFlow<Address?>(null)
private val _selectedPayment = MutableStateFlow<PaymentMethod?>(null)
private val _promoCode = MutableStateFlow<String?>(null)
private val _isLoading = MutableStateFlow(false)
private val _error = MutableStateFlow<String?>(null)
// Each modification can create temporary inconsistent states
fun applyPromoCode(code: String) {
viewModelScope.launch {
_isLoading.value = true
_error.value = null // Reset error
try {
val discount = promoRepository.validate(code)
_promoCode.value = code
// Cart state also needs updating...
// but there's a delay between the two updates
recalculateCart()
} catch (e: Exception) {
_error.value = e.message
_promoCode.value = null
} finally {
_isLoading.value = false
}
}
}
// Hard to guarantee consistency across all these states
private fun recalculateCart() {
// Complex logic depending on multiple states...
}
}Este exemplo mostra como o estado pode se fragmentar no MVVM, dificultando o rastreamento de transições e a reprodução de bugs.
Entendendo o MVI: A Abordagem Unidirecional
MVI (Model-View-Intent) adota uma filosofia diferente: fluxo de dados unidirecional e um único estado imutável. Essa abordagem, inspirada no Redux, elimina os problemas de estado inconsistente.
Princípios Fundamentais do MVI
No MVI, tudo segue um ciclo claro: o usuário emite um Intent (ação), o Reducer transforma o estado atual em um novo estado, e a View exibe esse único estado. É previsível, testável e depurável.
A seguir, implementa-se a mesma tela de perfil, desta vez com MVI. Observe como o estado é centralizado e as ações são tipadas explicitamente.
// MVI ViewModel for the same user profile screen
// Note the structure: Intent → Reducer → Single State
class UserProfileMviViewModel(
private val userRepository: UserRepository,
private val analyticsTracker: AnalyticsTracker
) : ViewModel() {
// Single, immutable state - the absolute source of truth
private val _state = MutableStateFlow(UserProfileState())
val state: StateFlow<UserProfileState> = _state.asStateFlow()
// Channel for side effects (navigation, snackbar)
private val _sideEffect = Channel<UserProfileSideEffect>()
val sideEffect: Flow<UserProfileSideEffect> = _sideEffect.receiveAsFlow()
// Single entry point for all user actions
fun onIntent(intent: UserProfileIntent) {
when (intent) {
is UserProfileIntent.LoadProfile -> loadProfile(intent.userId)
is UserProfileIntent.EnableEditMode -> enableEditMode()
is UserProfileIntent.SaveProfile -> saveProfile(intent.name, intent.bio)
is UserProfileIntent.CancelEdit -> cancelEdit()
}
}
private fun loadProfile(userId: String) {
viewModelScope.launch {
// Transition to loading state
_state.update { it.copy(isLoading = true, error = null) }
try {
val user = userRepository.getUser(userId)
// Single atomic state update
_state.update {
it.copy(
user = user,
isLoading = false,
error = null
)
}
analyticsTracker.trackProfileViewed(userId)
} catch (e: Exception) {
// Error state is part of the main state
_state.update {
it.copy(
isLoading = false,
error = "Unable to load profile"
)
}
}
}
}
private fun enableEditMode() {
// Simple, predictable update
_state.update { it.copy(isEditing = true) }
}
private fun saveProfile(name: String, bio: String) {
viewModelScope.launch {
val currentUser = _state.value.user ?: return@launch
_state.update { it.copy(isLoading = true) }
try {
val updatedUser = userRepository.updateUser(
currentUser.id,
name = name,
bio = bio
)
_state.update {
it.copy(
user = updatedUser,
isEditing = false,
isLoading = false
)
}
// Side effect to notify the user
_sideEffect.send(UserProfileSideEffect.ShowSuccess("Profile updated"))
} catch (e: Exception) {
_state.update {
it.copy(isLoading = false, error = "Failed to save profile")
}
}
}
}
private fun cancelEdit() {
_state.update { it.copy(isEditing = false) }
}
}
// All possible actions, explicitly typed
sealed class UserProfileIntent {
data class LoadProfile(val userId: String) : UserProfileIntent()
object EnableEditMode : UserProfileIntent()
data class SaveProfile(val name: String, val bio: String) : UserProfileIntent()
object CancelEdit : UserProfileIntent()
}
// Single, complete screen state
data class UserProfileState(
val user: User? = null,
val isLoading: Boolean = false,
val isEditing: Boolean = false,
val error: String? = null
)
// One-shot side effects
sealed class UserProfileSideEffect {
data class ShowSuccess(val message: String) : UserProfileSideEffect()
data class NavigateTo(val destination: String) : UserProfileSideEffect()
}A diferença é clara: um único fluxo de estado, ações explícitas e uma separação limpa entre estado persistente e efeitos de único uso.
Com o MVI, é possível registrar cada Intent e cada transição de estado. Reproduzir um bug torna-se trivial: basta reproduzir a sequência de Intents.
MVI com Jetpack Compose
O MVI brilha especialmente com o Jetpack Compose, pois ambos compartilham a mesma filosofia: estado imutável e interface declarativa. Veja como conectar o ViewModel a uma tela Compose:
// Compose screen consuming MVI state
// The connection between ViewModel and UI is elegant and reactive
@Composable
fun UserProfileScreen(
viewModel: UserProfileMviViewModel = hiltViewModel(),
onNavigateBack: () -> Unit
) {
// Collect the single state
val state by viewModel.state.collectAsStateWithLifecycle()
// Handle side effects
LaunchedEffect(Unit) {
viewModel.sideEffect.collect { effect ->
when (effect) {
is UserProfileSideEffect.ShowSuccess -> {
// Show snackbar
}
is UserProfileSideEffect.NavigateTo -> {
// Navigate
}
}
}
}
// Purely declarative UI based on state
UserProfileContent(
state = state,
onIntent = viewModel::onIntent
)
}
@Composable
private fun UserProfileContent(
state: UserProfileState,
onIntent: (UserProfileIntent) -> Unit
) {
Column(modifier = Modifier.fillMaxSize().padding(16.dp)) {
// Conditional rendering based on the single state
when {
state.isLoading -> {
CircularProgressIndicator(
modifier = Modifier.align(Alignment.CenterHorizontally)
)
}
state.error != null -> {
ErrorMessage(
message = state.error,
onRetry = {
state.user?.id?.let {
onIntent(UserProfileIntent.LoadProfile(it))
}
}
)
}
state.user != null -> {
ProfileCard(
user = state.user,
isEditing = state.isEditing,
onEditClick = { onIntent(UserProfileIntent.EnableEditMode) },
onSaveClick = { name, bio ->
onIntent(UserProfileIntent.SaveProfile(name, bio))
},
onCancelClick = { onIntent(UserProfileIntent.CancelEdit) }
)
}
}
}
}A interface se torna uma função pura do estado: previsível, testável e sem efeitos colaterais ocultos.
Comparação Detalhada
Depois de ver os dois padrões em ação, convém compará-los nos critérios que realmente importam em produção.
Gerenciamento de Estado
A diferença fundamental reside no gerenciamento de estado. Essa distinção impacta diretamente a manutenibilidade a longo prazo.
// MVVM: potentially fragmented state
class MvvmViewModel : ViewModel() {
// Multiple sources of truth - manual synchronization needed
private val _users = MutableStateFlow<List<User>>(emptyList())
private val _selectedUser = MutableStateFlow<User?>(null)
private val _isLoading = MutableStateFlow(false)
private val _searchQuery = MutableStateFlow("")
// What happens if _selectedUser points to a user
// that's no longer in _users after a refresh?
// → Inconsistent state that's hard to detect
}
// MVI: consistent state by construction
class MviViewModel : ViewModel() {
// Single source of truth - inconsistencies are impossible
private val _state = MutableStateFlow(UsersState())
data class UsersState(
val users: List<User> = emptyList(),
val selectedUser: User? = null, // Always consistent with users
val isLoading: Boolean = false,
val searchQuery: String = ""
)
// Each update automatically maintains invariants
private fun selectUser(userId: String) {
_state.update { currentState ->
currentState.copy(
selectedUser = currentState.users.find { it.id == userId }
)
}
}
}No MVVM, estados inconsistentes frequentemente se manifestam como bugs intermitentes difíceis de reproduzir. No MVI, se o estado é inválido, ele é deterministicamente inválido.
Testabilidade da Arquitetura
Ambas as arquiteturas são testáveis, mas o MVI oferece uma vantagem significativa graças à sua previsibilidade.
// MVVM test: requires verifying multiple flows
@Test
fun `loadUsers should update state correctly`() = runTest {
val viewModel = MvvmViewModel(fakeRepository)
// Observe multiple flows simultaneously
val users = mutableListOf<List<User>>()
val loadingStates = mutableListOf<Boolean>()
val job1 = launch { viewModel.users.toList(users) }
val job2 = launch { viewModel.isLoading.toList(loadingStates) }
viewModel.loadUsers()
advanceUntilIdle()
// Assertions on different flows
assertThat(users.last()).isEqualTo(expectedUsers)
assertThat(loadingStates).containsExactly(false, true, false)
job1.cancel()
job2.cancel()
}
// MVI test: single flow to verify, clear state sequence
@Test
fun `LoadUsers intent should produce correct state sequence`() = runTest {
val viewModel = MviViewModel(fakeRepository)
// Collect all states in order
val states = mutableListOf<UsersState>()
val job = launch { viewModel.state.toList(states) }
// Send the intent
viewModel.onIntent(UsersIntent.LoadUsers)
advanceUntilIdle()
// Verify the exact state sequence
assertThat(states).containsExactly(
UsersState(), // Initial
UsersState(isLoading = true), // Loading
UsersState(users = expectedUsers, isLoading = false) // Success
)
job.cancel()
}O MVI permite verificar a sequência exata de transições de estado, o que é especialmente útil em telas complexas com muitas interações.
Complexidade e Boilerplate
Convém ser honestos sobre os trade-offs. O MVI requer mais código repetitivo e uma compreensão mais profunda dos conceitos.
// MVVM: quick start, less code
class SimpleViewModel : ViewModel() {
private val _name = MutableStateFlow("")
val name: StateFlow<String> = _name.asStateFlow()
fun updateName(newName: String) {
_name.value = newName
}
}
// Total: ~10 lines
// MVI: more structure, more code
class SimpleMviViewModel : ViewModel() {
private val _state = MutableStateFlow(SimpleState())
val state: StateFlow<SimpleState> = _state.asStateFlow()
fun onIntent(intent: SimpleIntent) {
when (intent) {
is SimpleIntent.UpdateName -> {
_state.update { it.copy(name = intent.name) }
}
}
}
}
data class SimpleState(val name: String = "")
sealed class SimpleIntent {
data class UpdateName(val name: String) : SimpleIntent()
}
// Total: ~20 linesPara uma tela simples, o MVI pode parecer excessivo. Mas essa estrutura paga dividendos conforme a tela cresce em complexidade.
Pronto para mandar bem nas entrevistas de Android?
Pratique com nossos simuladores interativos, flashcards e testes tecnicos.
Quando Escolher MVVM?
O MVVM continua sendo a escolha pragmática em diversas situações:
Projetos Existentes
Se a aplicação já usa MVVM, migrar para MVI representa um esforço considerável. Melhorar a estrutura MVVM existente costuma ser a decisão mais sensata.
Equipes Júnior ou Mistas
O MVVM é mais acessível. Uma equipe com desenvolvedores iniciantes será produtiva mais rapidamente com MVVM do que com MVI.
Telas Simples
Para telas com poucos estados e interações, o MVI adiciona complexidade sem benefício proporcional.
// For a simple settings screen, MVVM is plenty
class SettingsViewModel(
private val preferencesRepository: PreferencesRepository
) : ViewModel() {
val darkMode = preferencesRepository.darkModeFlow
.stateIn(viewModelScope, SharingStarted.Lazily, false)
val notificationsEnabled = preferencesRepository.notificationsFlow
.stateIn(viewModelScope, SharingStarted.Lazily, true)
fun toggleDarkMode() {
viewModelScope.launch {
preferencesRepository.setDarkMode(!darkMode.value)
}
}
fun toggleNotifications() {
viewModelScope.launch {
preferencesRepository.setNotifications(!notificationsEnabled.value)
}
}
}Quando Escolher MVI?
O MVI demonstra seu valor em contextos específicos:
Aplicações com Estado Complexo
Quando uma tela tem muitos estados interdependentes, o MVI garante a consistência.
// Checkout screen with complex state: MVI excels
data class CheckoutState(
val cartItems: List<CartItem> = emptyList(),
val selectedAddress: Address? = null,
val selectedPayment: PaymentMethod? = null,
val promoCode: PromoCode? = null,
val deliveryOptions: List<DeliveryOption> = emptyList(),
val selectedDelivery: DeliveryOption? = null,
val subtotal: Money = Money.ZERO,
val discount: Money = Money.ZERO,
val deliveryFee: Money = Money.ZERO,
val total: Money = Money.ZERO,
val isLoading: Boolean = false,
val error: CheckoutError? = null,
val step: CheckoutStep = CheckoutStep.CART
) {
// Verifiable invariants
init {
require(total == subtotal - discount + deliveryFee) {
"Total inconsistent with components"
}
}
}
sealed class CheckoutIntent {
data class AddItem(val item: CartItem) : CheckoutIntent()
data class RemoveItem(val itemId: String) : CheckoutIntent()
data class SelectAddress(val address: Address) : CheckoutIntent()
data class SelectPayment(val method: PaymentMethod) : CheckoutIntent()
data class ApplyPromo(val code: String) : CheckoutIntent()
object RemovePromo : CheckoutIntent()
data class SelectDelivery(val option: DeliveryOption) : CheckoutIntent()
object ProceedToPayment : CheckoutIntent()
object ConfirmOrder : CheckoutIntent()
}Aplicações em Tempo Real
Para apps com WebSockets, notificações push ou sincronização em tempo real, o MVI gerencia elegantemente múltiplos fluxos de dados.
Requisitos Rígidos de Depuração
Em domínios regulados (fintech, saúde), a capacidade de reproduzir exatamente uma sequência de eventos é inestimável.
O MVI facilita a implementação de "depuração com viagem no tempo": registrar todos os estados e reproduzir a sessão do usuário.
Abordagem Híbrida: O Melhor dos Dois Mundos
Na prática, muitas equipes adotam uma abordagem híbrida: MVI para telas complexas, MVVM simplificado para telas simples. Este é um padrão recomendado:
// Base ViewModel with lightweight MVI structure
// Reusable for all screens
abstract class MviViewModel<S, I>(initialState: S) : ViewModel() {
private val _state = MutableStateFlow(initialState)
val state: StateFlow<S> = _state.asStateFlow()
protected val currentState: S get() = _state.value
// Single entry point for intents
abstract fun onIntent(intent: I)
// Helper to update state
protected fun updateState(reducer: S.() -> S) {
_state.update { it.reducer() }
}
}
// Concrete implementation stays simple
class ProfileViewModel(
private val userRepository: UserRepository
) : MviViewModel<ProfileState, ProfileIntent>(ProfileState()) {
override fun onIntent(intent: ProfileIntent) {
when (intent) {
is ProfileIntent.Load -> load(intent.userId)
is ProfileIntent.Refresh -> refresh()
is ProfileIntent.ToggleFavorite -> toggleFavorite()
}
}
private fun load(userId: String) {
viewModelScope.launch {
updateState { copy(isLoading = true) }
val user = userRepository.getUser(userId)
updateState {
copy(user = user, isLoading = false)
}
}
}
private fun refresh() = load(currentState.user?.id ?: return)
private fun toggleFavorite() {
updateState {
copy(user = user?.copy(isFavorite = !user.isFavorite))
}
}
}Essa abordagem oferece os benefícios do MVI (único estado, intents tipados) sem boilerplate excessivo.
Recomendações para 2026
Estas são as recomendações para escolher entre as duas arquiteturas conforme o contexto:
Para Novos Projetos com Compose
Adotar MVI desde o início. Compose e MVI compartilham a mesma filosofia, e o investimento inicial se recupera rapidamente.
Para Projetos Existentes Baseados em Views
Manter MVVM, mas incorporar gradualmente as melhores práticas do MVI: estado único no ViewModel, ações tipadas com sealed classes.
Para Equipes Grandes
Padronizar em uma única abordagem e documentá-la. A consistência no código é mais importante do que a escolha do padrão em si.
O melhor padrão é aquele que a equipe compreende e aplica corretamente. Um MVVM bem implementado supera um MVI mal compreendido.
Conclusão
MVVM e MVI são abordagens válidas para arquiteturar aplicações Android. O MVVM oferece simplicidade e familiaridade, enquanto o MVI traz previsibilidade e depuração mais fácil.
Lista de Verificação para a Decisão
- Escolher MVVM se: equipe júnior, projeto simples, migração custosa
- Escolher MVI se: Compose nativo, estado complexo, depuração crítica
- Abordagem híbrida recomendada: MVI leve com estado único, sem over-engineering
- Prioridade máxima: consistência em todo o código
Comece a praticar!
Teste seus conhecimentos com nossos simuladores de entrevista e testes tecnicos.
Independentemente da escolha, a chave está em compreender os pontos fortes e fracos de cada abordagem para tomar uma decisão embasada. O melhor código é aquele que a equipe consegue manter com tranquilidade a longo prazo.
Tags
Compartilhar
Artigos relacionados

Dominando Kotlin Coroutines: Guia Completo 2026
Aprenda a dominar Kotlin coroutines para desenvolvimento Android: funções suspend, scopes, dispatchers e padrões avançados.

React Native: Desenvolvimento completo de um aplicativo móvel em 2026
Guia completo para desenvolver aplicativos móveis iOS e Android com React Native. Da configuração inicial até a publicação nas lojas, todos os fundamentos necessários.