代码改变世界
错误:
Type inference failed : Not enough information to infer parameter T in fun<T:View> findViewById(id: Int): T! Please specify it explicitly.
解决:
holder.btnInstall = convertView.findViewById(R.id.btn_install) as Button
改为
holder.btnInstall = convertView.findViewById<Button>(R.id.btn_install)
转自:http://blog.csdn.net/myfwjy/article/details/78228829
原文地址:https://www.cnblogs.com/shmilyGWT/p/8589470.html
时间: 2024-10-23 12:31:39