当前位置:  开发笔记 > 编程语言 > 正文

如何在Anko DSL中引用其他视图?

如何解决《如何在AnkoDSL中引用其他视图?》经验,为你挑选了1个好方法。



1> Kirill Rakhm..:

我认为有两种方法.超级hacky方式是在textInputLayout块内声明正面按钮.这是可能的,因为您可以从任何嵌套范围内访问所有外部作用域,并且该positiveButton方法在alert作用域中声明:

alert {
    customView {
        verticalLayout {
            textInputLayout {
                val editText = editText {
                    hint = "Name"
                }

                positiveButton("OK") { toast("${editText.text}") }
            }
        }
    }
}.show()

声明可以从两个作用域访问的变量的方法就越少.但是,您需要使其可以为空,因为您无法立即初始化它:

alert {
    var editText: EditText? = null

    customView {
        verticalLayout {
            textInputLayout {
                editText = editText {
                    hint = "Name"
                }
            }
        }
    }

    positiveButton("OK") { toast("${editText!!.text}") } 
}.show()


你在谈论属性或局部变量吗?因为变量不能具有`lateinit`修饰符.
推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有