如何使用 KOTLIN 按钮清除 edittext 中的输入

How to clear input in edittext with button KOTLIN

我需要在单击按钮时清除 editText。在 java 中我们使用 getText 或 setText 但在 kotlin 中我找不到任何东西。

    val email=findViewById<EditText>(R.id.email).apply {
        text= ""
    }

我试过使用这个但是 ---text=""--- 给我一个类型不匹配

首先,您还需要获取按钮 ID。然后你应该在你的按钮上设置 setOnClickListener 并清除 EditText 操作。

val button = findViewById<Button>(R.id.button)
val emailEditText = findViewById<EditText>(R.id.email)
button.setOnClickListener { emailEditText.setText("") }