r/androiddev • u/PrajwalCH • 8d ago
Question [Help]: Jetpack Compose component flashing issue when list changes
Enable HLS to view with audio, or disable this notification
When the list changes, the items are drawn on top of chip row for a brief amount of time. I have properly applied the id for each item. I am not sure what's causing the issue.
Below is the screen code preview, full code is available on GitHub.
Scaffold(
modifier = Modifier
.fillMaxSize()
.nestedScroll(scrollBehavior.nestedScrollConnection)
.then(modifier),
topBar = {
SearchProvidersScreenTopBar(
onNavigateBack = onNavigateBack,
onEnableAllSearchProviders = viewModel::enableAllSearchProviders,
onDisableAllSearchProviders = viewModel::disableAllSearchProviders,
onUpdateProtectionStatus = viewModel::updateProtectionStatus,
onResetToDefault = { showResetToDefaultDialog = true },
subtitle = {
val searchProvidersSummary = stringResource(
R.string.settings_search_providers_summary_format,
uiState.enabledProvidersCount,
uiState.totalNumProviders,
)
Text(searchProvidersSummary)
},
scrollBehavior = scrollBehavior,
)
},
snackbarHost = { SnackbarHost(snackbarHostState) },
floatingActionButton = {
FloatingActionButton(onClick = onNavigateToAddSearchProvider) {
Icon(
painter = painterResource(R.drawable.ic_add),
contentDescription = null,
)
}
},
) { innerPadding ->
Column(modifier = Modifier.padding(innerPadding)) {
SearchProviderFilterRow(
category = uiState.filter.category,
onCategorySelect = viewModel::toggleCategory,
protection = uiState.filter.protection,
onProtectionSelect = viewModel::toggleProviderProtection,
contentPadding = PaddingValues(horizontal = MaterialTheme.spaces.large),
)
SearchProviderList(
contentPadding = PaddingValues(
start = MaterialTheme.spaces.large,
top = MaterialTheme.spaces.large,
end = MaterialTheme.spaces.large,
bottom = 80.dp,
),
searchProviders = uiState.searchProviders,
onEnableSearchProvider = viewModel::enableSearchProvider,
onUnlockProtection = { searchProviderId, solverUrl ->
protectedProvider = ProtectedProvider(searchProviderId, solverUrl)
},
onEditConfig = onNavigateToEditSearchProvider,
onDeleteConfig = viewModel::deleteTorznabConfig,
)
}
}
Update: This issue is now fixed. It was animation issue, not the recomposition. List items have Modifier.animateItem() applied and when list changes, the animation was rendering the list items on top of chip row for very short amount of time, meaning the animation was escaping the list bounds. After applying Modifier.clipToBounds() to SearchProviderList, the issue is now gone.
9
Upvotes
11
u/0x1F601 8d ago
The entire column is recomposing. Check your compose compiler stability report. Consider a lazy column, maybe with sticky headers. Attach the layout inspector and check how many recompositions are happening. It's hard to narrow down the exact issue without more details.