Skip to content

Commit

Permalink
#6 feat/메인화면 : BottomNavigationView 의 아이템 선택 listener 관련 BindingAdapt…
Browse files Browse the repository at this point in the history
…er 구현
  • Loading branch information
HayleyKim0716 committed Aug 1, 2022
1 parent 00d5248 commit ba1d9b1
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.ftw.hometerview.ui.bindingadapter

import androidx.databinding.BindingAdapter
import com.google.android.material.bottomnavigation.BottomNavigationView
import com.google.android.material.navigation.NavigationBarView

@BindingAdapter("onNavigationItemSelected")
fun setOnNavigationItemSelectedListener(
bottomNavigationView: BottomNavigationView,
listener: NavigationBarView.OnItemSelectedListener?
) {
bottomNavigationView.setOnItemSelectedListener(listener)
}

0 comments on commit ba1d9b1

Please sign in to comment.