代码改变世界
错误:
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<Button>(R.id.btn_install)
转自:http://blog.csdn.net/myfwjy/article/details/78228829