我正在使用 Jetpack compose 开发应用程序,但在 Jetpack 预览期间导入字体时遇到问题。预览为空并显示错误(渲染问题):
Font resource ID #0x... cannot be retrieved
例如,在自定义视图中,我们有一个
isInEditMode
在设计部分控制布局预览,我们可以禁用一些破坏预览的逻辑。
Jetpack @Preview 有什么办法吗?我目前阅读了所有可用的文档/文章,但没有找到答案。
非常感谢您提供任何信息。
Jetpack Compose 代码为:
@Composable
fun ScreenContent() {
Row(
modifier = Modifier
.wrapContentSize()
.fillMaxWidth()
.clip(RoundedCornerShape(50))
.background(colorResource(id = R.color.search_field_background_color)),
horizontalArrangement = Arrangement.Center
) {
Icon(
painterResource(id = R.drawable.ic_search_image), contentDescription = stringResource(R.string.search_screen_magnifier_icon_content_description)
)
Text(
modifier = Modifier.padding(all = 8.dp),
text = stringResource(R.string.search_screen_search_field_text),
fontSize = 12.sp,
color = colorResource(id = R.color.search_field_text_color),
fontFamily = getFont(R.font.nunito_sans_extra_bold)
)
}
}
//according to the plan this method will contain
//some flag to return null in @Preview mode
@Composable
private fun getFont(@FontRes fontId : Int): FontFamily? {
return FontFamily(ResourcesCompat.getFont(LocalContext.current, fontId)!!)
}
@Preview(showSystemUi = true)
@Composable
fun Preview() {
ScreenContent()
}