我试图调用我的imageid在片段类,但它显示错误,也显示错误在setOnClickListener。我正在尝试每一个想法,请如果你有任何答案,请分享它。
//这是一个代码
class Home : Fragment() {
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
val view: View = inflater!!.inflate(R.layout.fragment_home, container, false)
view.Notification.setOnClickListener { view -> //Notification is a id of imageView
Log.d("btnSetup", "Selected")
}
return view
}
}
2条答案
按热度按时间drkbr07n1#
要从一个id获取视图,需要调用
findViewById
。brvekthn2#
最好的方法是在
onViewCreated
中执行以下操作: