我试图在EditText中设置文本,但它说:

Type mismatch. 
Required: Editable 
Found: String

我的代码如下:

String name = "Paramjeet"
val nametxt = findViewById (R.id.nametxt) as EditText
nametxt.text = name

不要说使用setText,因为我使用的是kotlin,而不是Java。


当前回答

使用setText(String)作为EditText。文本首先需要一个可编辑的,而不是字符串

为什么?

迈克尔在这个链接下给出了很好的解释。请访问这个链接了解更多细节

在为Java getter/setter对生成合成属性时,Kotlin首先查找getter。getter足以创建具有该getter类型的合成属性。另一方面,如果只有setter,则不会创建该属性。

当setter开始发挥作用时,属性创建变得更加困难。原因是getter和setter可能有不同的类型。此外,getter和/或setter可以在子类中被重写。

其他回答

如果你想使用getter .text from principle,使用:

nametxt.text = Editable.Factory.getInstance().newEditable(name)

看一下EditText的API:

CharSequence文本,TextView。BufferType类型)

可编辑的获取文本()

链接:https://developer.android.com/reference/android/widget/EditText.html

或者你可以使用extension属性:

var EditText.value
    get() = this.text.toString()
    set(value) {
            this.setText(value)
    }

使用.value=代替.text=

使用setText(String),因为editText。text需要一个可编辑的,而不是字符串。

val editable = Editable.Factory.getInstance().newEditable(savedString)

editText.text = editable