码迷,mamicode.com
首页 > 其他好文 > 详细

Kotlin-Not enough information to infer parameter T in fun<T:View> findViewById(id: Int): T!

时间:2018-03-17 15:23:52      阅读:705      评论:0      收藏:0      [点我收藏+]

标签:http   net   fail   blog   too   代码   tail   解决   sdn   

代码改变世界

错误:

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

Kotlin-Not enough information to infer parameter T in fun<T:View> findViewById(id: Int): T!

标签:http   net   fail   blog   too   代码   tail   解决   sdn   

原文地址:https://www.cnblogs.com/shmilyGWT/p/8589470.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!