이번 포스팅은 BottomNavigation 위에 프래그먼트를 올리고, 그 프래그먼트에 탭 레이아웃을 적용하여 또 프래그먼트를 올리는 것을 정리할 것이다. 우선 필요한 준비물은 BottomNavigationView이니 만들어보자. 1. activity_main.xml activity_main.xml에 BottomNavigationView와 탭레이아웃을 올릴 FrameLayout을 만들어준다. 2. menu_bottom_navi.xml 그리고 bottomNavigation에 들어갈 각각의 item을 만들어준다. 3. 각각 item에 대한 Fragment.kt 만들기 class MyPageFragment : BaseFragment(FragmentMyPageBinding::bind, R.layout.fragm..