Estou tentando replicar o seguinte ListView em meu aplicativo Android usando Kotlin: https://github.com/bidrohi/KotlinListView .
Infelizmente, estou recebendo um erro que não consigo resolver sozinho. Este é o meu código:
MainActivity.kt:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
val listView = findViewById(R.id.list) as ListView
listView.adapter = ListExampleAdapter(this)
}
private class ListExampleAdapter(context: Context) : BaseAdapter() {
internal var sList = arrayOf("Eins", "Zwei", "Drei")
private val mInflator: LayoutInflater
init {
this.mInflator = LayoutInflater.from(context)
}
override fun getCount(): Int {
return sList.size
}
override fun getItem(position: Int): Any {
return sList[position]
}
override fun getItemId(position: Int): Long {
return position.toLong()
}
override fun getView(position: Int, convertView: View?, parent: ViewGroup): View? {
val view: View?
val vh: ListRowHolder
if(convertView == null) {
view = this.mInflator.inflate(R.layout.list_row, parent, false)
vh = ListRowHolder(view)
view.tag = vh
} else {
view = convertView
vh = view.tag as ListRowHolder
}
vh.label.text = sList[position]
return view
}
}
private class ListRowHolder(row: View?) {
public val label: TextView
init {
this.label = row?.findViewById(R.id.label) as TextView
}
}
}
Os layouts são exatamente como aqui: https://github.com/bidrohi/KotlinListView/tree/master/app/src/main/res/layout
A mensagem de erro completa que estou recebendo é esta: Erro: (92, 31) Falha na inferência de tipo: Não há informações suficientes para inferir o parâmetro T em fun findViewById (p0: Int): T! Por favor, especifique explicitamente.
Agradeço qualquer ajuda que puder obter.
this.label = ... as TextView
parathis.label = row?.findViewById<TextView>
e fazer isso de forma análoga paraval listView = ...
? Informe se isso funciona para que eu possa dar uma resposta adequada nesse caso.