Estoy tratando de replicar el siguiente ListView en mi aplicación de Android usando Kotlin: https://github.com/bidrohi/KotlinListView .
Lamentablemente, recibo un error que no puedo resolver por mí mismo. Aquí está mi 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
}
}
}
Los diseños son exactamente como aquí: https://github.com/bidrohi/KotlinListView/tree/master/app/src/main/res/layout
El mensaje de error completo que recibo es este: Error: (92, 31) Error en la inferencia de tipo: No hay suficiente información para inferir el parámetro T en fun findViewById (p0: Int): T! Especifíquelo explícitamente.
Agradecería cualquier ayuda que pueda conseguir.
android
kotlin
android-8.0-oreo
Timo Güntner
fuente
fuente
this.label = ... as TextView
athis.label = row?.findViewById<TextView>
, y hacerlo de manera análoga aval listView = ...
? Hágame saber si esto funciona para que pueda hacer que esta sea una respuesta adecuada en ese caso.Respuestas:
Debe utilizar API nivel 26 (o superior). Esta versión ha cambiado la firma de
View.findViewById()
: consulte aquí https://developer.android.com/about/versions/oreo/android-8.0-changes#fvbi-signatureEntonces, en su caso, donde el resultado de
findViewById
es ambiguo, debe proporcionar el tipo:1 / Cambiar
val listView = findViewById(R.id.list) as ListView
aval listView = findViewById<ListView>(R.id.list)
2 / Cambiar
this.label = row?.findViewById(R.id.label) as TextView
athis.label = row?.findViewById<TextView>(R.id.label) as TextView
Tenga en cuenta que en 2 / la conversión solo es necesaria porque
row
admite nulos. Silabel
fuera anulable también, o si lo hizorow
no anulable, no sería obligatorio.fuente
findViewById\((.+?)\)\s+as\s+(.+)
confindViewById<$2>\($1\)
y ejecutar el reemplazo en todos los archivos. Resolvió casi todos mis errores.findViewById(R.id.tabLayout).setOnClickListener(v-> Log.d(TAG, "login: "));
esto está bien para Java.findViewById\((.+?)\)\s+as\s+([A-Za-z0-9?]+)
funciona mejor para mí. Evita que algún código de una línea no haya terminado @GustavKarlssonAndoid O cambiar la api findViewById de
a
por lo tanto, si está dirigido a API 26, puede cambiar
a
o
fuente
Esta funcionando
API de nivel 25 o inferior utilice este
API nivel 26 o superior utilice este
¡Feliz codificación!
fuente
Cambie su código a esto. Los lugares donde se produjeron los principales cambios están marcados con asteriscos.
fuente
val listView = findViewById<ListView>(R.id.list)
Te sugiero que uses
synthetics
extensión de Android kotlin:https://kotlinlang.org/docs/tutorials/android-plugin.html
https://antonioleiva.com/kotlin-android-extensions/
En su caso, el código será algo como esto:
Tan sencillo como eso ;)
fuente