gpt4 book ai didi

android - "Not enough information to infer parameter T"与 Kotlin 和 Android

转载 作者:IT老高 更新时间:2023-10-28 13:08:11 28 4
gpt4 key购买 nike

我正在尝试使用 Kotlin 在我的 Android 应用中复制以下 ListView: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 findViewById(p0: Int) 中的参数 T:T!请明确指定。

如果能得到任何帮助,我将不胜感激。

最佳答案

您必须使用 API 级别 26(或更高)。此版本更改了View.findViewById() 的签名- 见这里 https://developer.android.com/about/versions/oreo/android-8.0-changes#fvbi-signature

所以在你的情况下,findViewById 的结果在哪里?不明确,需要提供类型:

1/改变

val listView = findViewById(R.id.list) as ListView

val listView = findViewById<ListView>(R.id.list)

2/改变

this.label = row?.findViewById(R.id.label) as TextView

this.label = row?.findViewById<TextView>(R.id.label) as TextView

请注意,在 2/中只需要转换,因为 row可以为空。如果 label也可以为空,或者如果你做了 row不可为空,不需要。

关于android - "Not enough information to infer parameter T"与 Kotlin 和 Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45267041/

28 4 0