Android/View
[View] material BottomNavigationView에서 아이콘과 텍스트 동시에 표시하는 방법
dev210202
2022. 7. 15. 17:19
app:labelVisibilityMode="labeled"
xml에서 다음과 같이 추가해준다
ex)
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bnv_main"
style="@style/Widget.MaterialComponents.BottomNavigationView.Colored"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:itemBackground="@color/primary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:labelVisibilityMode="labeled"
app:menu="@menu/bottom_navigation_menu" />
</androidx.constraintlayout.widget.ConstraintLayout>