if (p0.textView?.text == "Item 2")
p0.textView?.text = "text" // текст устанавливается
if(p0.textView?.text == "Item 3")
p0.textView?.setBackgroundColor(p0.textView!!.resources.getColor(R.color.colorPrimary)) // цвет тоже меняется
if(p0.textView?.text == "Item 4")
p0.textView?.height = 256 // а вот размер не меняются.
В чём ошибка?