在 Android Studio 4.0(Canary) 中找不到预览 window 的位置
Can't find where the preview window is in Android Studio 4.0(Canary)
我正在阅读 Android Studio 4.0(Canary) 中 运行 的 Jetpack 教程,请参阅下面的 link post。
https://developer.android.com/jetpack/compose/tutorial
一切就绪,除了我找不到预览 window 因为我尝试预览 "Composable" 方法。
谁能给我确切的提示,预览 window 在哪里?
您必须先构建项目 (Build -> Make Project)。我还必须重新启动 Android Studio 才能让预览开始工作。
勾选 official site:
Beginning with Android Studio 4.0 Canary 1, Android Studio lets you preview your composable functions within the IDE, instead of needing to download the app to an Android device or emulator. The main restriction is, the composable function must not take any parameters. Add the @Preview
annotation before @Composable
.
然后 select 在右上角 编辑器和预览 切换。
要更新预览,请单击 Build Refresh 按钮。
我正在阅读 Android Studio 4.0(Canary) 中 运行 的 Jetpack 教程,请参阅下面的 link post。
https://developer.android.com/jetpack/compose/tutorial
一切就绪,除了我找不到预览 window 因为我尝试预览 "Composable" 方法。
谁能给我确切的提示,预览 window 在哪里?
您必须先构建项目 (Build -> Make Project)。我还必须重新启动 Android Studio 才能让预览开始工作。
勾选 official site:
Beginning with Android Studio 4.0 Canary 1, Android Studio lets you preview your composable functions within the IDE, instead of needing to download the app to an Android device or emulator. The main restriction is, the composable function must not take any parameters. Add the
@Preview
annotation before@Composable
.
然后 select 在右上角 编辑器和预览 切换。
要更新预览,请单击 Build Refresh 按钮。