Kotlinを使用してAndroidアプリで次のリストビューを複製しようとしています:https : //github.com/bidrohi/KotlinListView。
残念ながら、自分で解決できないエラーが発生しています。これが私のコードです:
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
}
}
}
レイアウトは次のとおりです。https://github.com/bidrohi/KotlinListView/tree/master/app/src/main/res/layout
私が取得している完全なエラーメッセージは次のとおりです: エラー:(92、31)型推論が失敗しました:funでパラメーターTを推論するのに十分な情報がありませんfindViewById(p0:Int):T!明示的に指定してください。
私が得ることができるどんな助けにも感謝します。
this.label = ... as TextView
してみてください。これが機能するかどうか私に知らせてください。そうすれば、私はこれが適切な答えになるようにします。this.label = row?.findViewById<TextView>
val listView = ...