kotlin 如何在jetpack合成中使用基于Compose的自定义对话框xml

huwehgph  于 2023-02-05  发布在  Kotlin
关注(0)|答案(1)|浏览(178)

我有基于xml的现有Dialog视图。我想在我的Compose功能中使用Dialog视图。是否可以这样做?如果可以,您能为我提供任何指导吗?示例会很棒。

laik7k3q

laik7k3q1#

你试过这种方法吗
https://developer.android.com/jetpack/compose/interop/interop-apis#compose-in-fragments
基本上他们建议使用AndroidViewBinding,这是由androidx. compose. ui提供的:ui-viewbinding库
一个示例显示在片段中,但您可以只在对话框中使用它,因为您只需要使用绑定

相关问题