You could add the following extension function:
fun View.removeClickListener() {
setOnClickListener(null)
isClickable = false
}
And then on your callers you'd do:
val textView = findViewById(R.id.activity_text)
textView.removeClickListener()