// Cast Your EditText as a TextView
((TextView) findViewById(R.id.email)).setText("your Text")
在芬兰湾的科特林:
// Cast your EditText into a TextView
// Like this
(findViewById(R.id.email) as TextView).text = "Your Text"
// Or simply like this
findViewById<TextView>(R.id.email).text = "Your Text"