<com.capstone.ui.CustomHeaderView
android:id="@+id/headerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
<!--ConstraintLayout일 경우에만-->
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
super.onViewCreated(view, savedInstanceState)
setHeaderView()
}
private fun setHeaderView() {
val beachMenu = listOf("강릉", "양양", "고성", "속초")
binding.headerView.setScreenTitle("파도정보")
binding.headerView.setBeachTabItem(beachMenu)
}