Sto cercando di replicare il seguente ListView nella mia app Android utilizzando Kotlin: https://github.com/bidrohi/KotlinListView .
Purtroppo ricevo un errore che non riesco a risolvere da solo. Ecco il mio codice:
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
}
}
}
I layout sono esattamente come qui: https://github.com/bidrohi/KotlinListView/tree/master/app/src/main/res/layout
Il messaggio di errore completo che ricevo è questo: Errore: (92, 31) Inferenza del tipo non riuscita: informazioni insufficienti per dedurre il parametro T in fun findViewById (p0: Int): T! Si prega di specificarlo esplicitamente.
Apprezzerei tutto l'aiuto che posso ottenere.
this.label = ... as TextView
perthis.label = row?.findViewById<TextView>
e fare così analogamente perval listView = ...
? Per favore fatemi sapere se funziona così posso renderlo una risposta adeguata in quel caso.