gpt4 book ai didi

android - Jetpack Compose 预览未显示

转载 作者:行者123 更新时间:2023-12-04 11:55:00 24 4
gpt4 key购买 nike

我似乎在撰写时遇到了预览问题,当我使用 @preview 注释撰写方法时,布局面板没有出现。我假设我缺少一个依赖项,但我已经从这里复制并粘贴了代码 https://developer.android.com/jetpack/compose/setup .有什么建议么? (尝试了通常的清除缓存,重新打开项目等):)

buildFeatures {
compose true
}
composeOptions {
kotlinCompilerExtensionVersion '1.0.0-alpha10'
kotlinCompilerVersion '1.4.21'
}
}

dependencies {
implementation 'androidx.compose.ui:ui:1.0.0-alpha10'
// Tooling support (Previews, etc.)
implementation 'androidx.compose.ui:ui-tooling:1.0.0-alpha10'
// Foundation (Border, Background, Box, Image, Scroll, shapes, animations, etc.)
implementation 'androidx.compose.foundation:foundation:1.0.0-alpha10'
// Material Design
implementation 'androidx.compose.material:material:1.0.0-alpha10'
// Material design icons
implementation 'androidx.compose.material:material-icons-core:1.0.0-alpha10'
implementation 'androidx.compose.material:material-icons-extended:1.0.0-alpha10'
// Integration with observables
implementation 'androidx.compose.runtime:runtime-livedata:1.0.0-alpha10'
implementation 'androidx.compose.runtime:runtime-rxjava2:1.0.0-alpha10'

// UI Tests
androidTestImplementation 'androidx.compose.ui:ui-test-junit4:1.0.0-alpha10'

implementation 'com.google.android.material:material:1.2.1'
}
这是我使用预览的尝试(在 AS 中它说功能“DefaultPreview”从未使用过)
import androidx.compose.ui.tooling.preview.Preview
.....
@Preview
@Composable
fun DefaultPreview() {
Text(text = "Hello!")
}

最佳答案

    buildFeatures {
compose true
}
在 build.gradle 文件中的 Android block 内写入上述代码。
然后您的问题将得到解决。

关于android - Jetpack Compose 预览未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65837989/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com