У меня есть этот массив
val textViewList = arrayListOf<TextView>()
, и я хочу добавить новый textView с кодом
textViewList.add(TextView)
, чтобы сделать это
textViewList[0].textSize = 20f
textViewList[0].text = "Programmatically created textView "
myLayout.addView(textViewList[0])
, но
textViewList.add(TextView)
не работает.