Kotlin踩坑篇
在学习kotlin之前,我们都知道获取kotlin的控件,只要在代码中输入对应的Id就行了。但是,对于fragment确并不适用。那在fragment怎么获取控件呢?
首先,莫忘了在build.gradle里添加(PS:目前都3.0 创建Kotlin项目自动配置好)
apply plugin: 'kotlin-android-extensions'
Activity引用控件就不说了,Fragment引用控件id 有2种方法
1. onCreateView()
tv_show = view?.findViewById(R.id.tv_show) as TextView.
2.importkotlinx.android.synthetic.main.fragment_home.*
onViewCreated()
...
推荐第2种,省去了findViewById,节约大量代码