Convert this java array to a kotlin equivalent array 2d
Hi I'm trying to convert this java array to a kotlin array:
String[][] data = {{"May","22"},
{"June","45"}};
I tried two ways but my tableView is not showing any record.
This is my way number 1:
val mayo: Array = arrayOf("Mayo", "20")
val junio: Array = arrayOf("Junio", "40")
val data2d1 = arrayOf(mayo, junio)
The I pased this array to the adapter of this library:
<a href="https://github.com/ISchwarz23/SortableTableView" rel="nofollow...