🤖Android/Java
[Android] 안드로이드 - BottomNavigationView 메뉴명 나오게 하기
루리야ㅑ
2024. 1. 26. 12:08
반응형
BottomNavigation을 구현할 때 label이 보이지 않아서 label이 보이도록 설정했다.
방법은 매우 간단하다.
BottomNavgationView가 있는 xml에서
아래와 같이 코드를 바꿔준다.
app:labelVisibilityMode="unlabeled"
app:labelVisibilityMode="labeled"
[전체 코드]
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottomNavigationView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#FFFFFF"
app:labelVisibilityMode="labeled"
app:menu="@menu/bottom_menu" />
</RelativeLayout >
[변경 전/후]
반응형