有没有办法将变量传递给 AbstractComposeView

发布于 2025-01-11 05:37:52 字数 769 浏览 0 评论 0原文

我在 jetpack compose 中有一个自定义视图,但我想传递额外的数据。我尝试创建额外的变量,但它有一个 lint 错误。

自定义视图 BlishedPhotoView 缺少工具使用的构造函数: (Context)(Context,AttributeSet)(上下文,属性集,int)

这是我的课程

class BlendedPhotoView @JvmOverloads constructor(
    context: Context,
    attrs: AttributeSet? = null,
    defStyleAttr: Int = 0,
    val photoUri: String?
) : AbstractComposeView(context, attrs, defStyleAttr) {

    @Composable
    override fun Content() {
        BuildBlendedPhoto(photoUri = photoUri)
    }

    fun capture(view: BlendedPhotoView) {
        val bitmap = ImageUtils.generateShareImage(view)
        ShareUtils.shareImageToOthers(context, "test", bitmap)
    }

}

I have a custom view in jetpack compose but I want to pass additional data. I tried to create additional variable but it has a lint error.

Custom view BlendedPhotoView is missing constructor used by tools:
(Context) or (Context,AttributeSet) or
(Context,AttributeSet,int)

Here is my class

class BlendedPhotoView @JvmOverloads constructor(
    context: Context,
    attrs: AttributeSet? = null,
    defStyleAttr: Int = 0,
    val photoUri: String?
) : AbstractComposeView(context, attrs, defStyleAttr) {

    @Composable
    override fun Content() {
        BuildBlendedPhoto(photoUri = photoUri)
    }

    fun capture(view: BlendedPhotoView) {
        val bitmap = ImageUtils.generateShareImage(view)
        ShareUtils.shareImageToOthers(context, "test", bitmap)
    }

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文