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

Type mismatch. 
Required: Editable 
Found: String

我的代码如下:

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

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


当前回答

我在我的项目中也有同样的问题,我给你一个例子,展示了如何检索和设置Kotlin布局中的数据: 有一个按钮save_button和两个文本编辑字段edit_name和edit_password。

 //when cliquing on the button 'save_button' 
    save_button.setOnClickListener {
    // geting the value from the two fields by using .text.toString()
                val email =  edit_name.text.toString()
                val password = edit_password.text.toString()
    // showing the result on the systeme's log 
                    Log.d("Main activity","your email is " + email )
                    Log.d("Main activity", "your password is $password" )
    // Then shows these values into the text view palete using  .setText()
                    text_view.setText("$email " + "$password")
                }

其他回答

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

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

这里有几个有效的答案,但如果你仍然想使用属性格式并让你的代码看起来干净,你可以写一个扩展:

fun String.toEditable(): Editable =  Editable.Factory.getInstance().newEditable(this)

然后你可以这样使用它:

mEditText.text = myString.toEditable()

我在我的项目中也有同样的问题,我给你一个例子,展示了如何检索和设置Kotlin布局中的数据: 有一个按钮save_button和两个文本编辑字段edit_name和edit_password。

 //when cliquing on the button 'save_button' 
    save_button.setOnClickListener {
    // geting the value from the two fields by using .text.toString()
                val email =  edit_name.text.toString()
                val password = edit_password.text.toString()
    // showing the result on the systeme's log 
                    Log.d("Main activity","your email is " + email )
                    Log.d("Main activity", "your password is $password" )
    // Then shows these values into the text view palete using  .setText()
                    text_view.setText("$email " + "$password")
                }

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

为什么?

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

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

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

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