我可以使用 Compose 和 Standard Activity 吗?

Can I use Compose and Standard Activities?

我找到了一个关于如何使用 Jetpack Compose 制作日历的好教程,为此我创建了一个 Compose Empty Activity 来实现它。

因为它是为学校设计的,我不能只使用 compose 来开发我的应用程序,我的问题是我是否可以使用 compose 和其他使用普通 kotlin 代码和 xml?

我正在测试它,当我使用 Intent 从撰写 activity 到标准撰写时,它一直崩溃。

有没有办法同时使用这两种方法? 谢谢!

my question is if I can have some activites made with compose and others with normal kotlin code and xml?

是的!

I was testing it and it keeps crashing when I use an Intent to go from a compose activity to a standard one.

您可能想问一个单独的问题,在其中提供崩溃的堆栈跟踪和导致崩溃的代码。确保您的所有活动在您的清单中都有 <activity> 个元素!有关启动 third-party activity 的演示,请参见 ;要启动您自己的一个,请为其构建适当的 Intent