Kotlin中引用控件Id 有两种方法:
1. onCreateView()
tv_show = view?.findViewById(R.id.tv_show) as TextView.
2.importkotlinx.android.synthetic.main.fragment_home.*
onViewCreated()
推荐第2种,省去了findViewById,节约大量代码
1. onCreateView()
tv_show = view?.findViewById(R.id.tv_show) as TextView.
2.importkotlinx.android.synthetic.main.fragment_home.*
onViewCreated()
推荐第2种,省去了findViewById,节约大量代码
本文标题:Kotlin之Fragment
本文链接:https://www.haomeiwen.com/subject/uitzmktx.html
网友评论