在Android Studio 4.0(金丝雀)中找不到预览窗口的位置

时间:2019-10-30 08:30:14

标签: android android-studio android-jetpack-compose android-studio-4.0

我正在阅读有关在Android Studio 4.0(加那利)中运行的Jetpack的教程,请参阅下面的链接。

https://developer.android.com/jetpack/compose/tutorial

一切都准备就绪,但由于尝试预览“可组合”方法而无法找到预览窗口。

有人可以给我确切的提示预览窗口在哪里吗?

2 个答案:

答案 0 :(得分:3)

检查official site

  

从Android Studio 4.0 Canary 1开始,借助Android Studio,您可以在IDE中预览可组合的功能,而无需将应用程序下载到Android设备或模拟器。主要限制是,可组合函数不得带有任何参数。 @Preview之前添加@Composable注释。

然后选择右上角的编辑器和预览切换器。

enter image description here

enter image description here

要更新预览,请点击构建刷新按钮。

enter image description here

答案 1 :(得分:1)

您必须首先构建项目(Build-> Make Project)。我还必须重新启动Android Studio才能开始预览。