我如何检查 TextView 在 Kotlin 中是否不为空?

How can i check if TextView is not empty in Kotlin?

我正在构建我的第一个应用程序。我的问题是:

当“liste1”不为空时,如何将 Intent 放入“liste2”?

我的代码:

 private fun insertTextToTv() {
        val liste = findViewById<TextView>(R.id.liste)
        val liste2 = findViewById<TextView>(R.id.liste2)
        val liste3 = findViewById<TextView>(R.id.liste3)

        if (liste.text.toString() == "") {
            liste.text = intent.getStringExtra("key")
        } else {
            liste2.text = intent.getStringExtra("key")
        }

    }
}

对方的意图Activity:

 private fun favoritesButtonSaveText(){
        favorisieren.setOnClickListener{
            val save = Intent(this, favorites::class.java)
            save.putExtra("key", sourceTextField.text.toString())
            startActivity(save)
        }


    }

感谢您的帮助和时间!

private fun insertTextToTv() {
        val liste = findViewById<TextView>(R.id.liste)
        val liste2 = findViewById<TextView>(R.id.liste2)
        val liste3 = findViewById<TextView>(R.id.liste3)

        if (liste.text.isNotEmpty()) {
            liste2.text = intent.getStringExtra("key")
        } 

    }

}