-
[Android] Bottom Navigation Bar 네비게이션 바 추가하기모바일 개발/안드로이드 2023. 3. 4. 18:40
이미 레이아웃이 어느정도 만들어져 있는 상태에서 하단 네비게이션을 추가해보도록 하겠다.
1. app > res > menu 위치에 네비게이션 요소로 넣을 아이템들을 미리 정의해준다.
2. 이미 만들어진 레이아웃(메인 화면)에 BottomNavigationView 위젯을 추가
<FrameLayout android:id="@+id/container" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior"/> <com.google.android.material.bottomnavigation.BottomNavigationView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/bottom_navigation" android:layout_marginStart="0dp" android:layout_marginEnd="0dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:menu="@menu/bottom_menu"/>
3. 탭에서 각 요소들이 선택되었을 때 각각 띄울 화면을 설정
이 화면들은 activity가 아닌 fragment로 만들어야한다.
나는 기존 자바 클래스의 일부를 수정하여 Fragment 파일로 만들었다.
public class [이름] extends AppCompatActivity -> public class [이름] extends Fragment
'모바일 개발 > 안드로이드' 카테고리의 다른 글
[Android] Apktool 안드로이드 리버싱도구 (0) 2023.03.26 key store 생성 방식 / 안드로이드 debug와 release의 차이점 (0) 2023.03.26 [Android Studio] kotlin 코틀린 Dialog 다이얼로그 띄우기 (0) 2023.01.18 [Android Studio] is deprecated 경고 메세지 (0) 2022.11.23 안드로이드 스튜디오 패키지 경로 수정 (0) 2022.11.22