210202
[View] material BottomNavigationView에서 아이콘과 텍스트 동시에 표시하는 방법 본문
Android/View
[View] material BottomNavigationView에서 아이콘과 텍스트 동시에 표시하는 방법
dev210202 2022. 7. 15. 17:19app: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>
'Android > View' 카테고리의 다른 글
[ViewPager] ViewPager와 ToolBar를 사용할 때 AppBar가 사라지는 이유 + 해결방법 (0) | 2020.06.09 |
---|---|
[ListView] androidX에서 ConstraintLayout에 Listview의 내용이 표시되지않는 오류 해결법 (0) | 2020.06.03 |
[View] 비트맵 버튼 정리 (0) | 2020.06.01 |
[View] 나인패치 이미지란 & 사용방법 (0) | 2020.06.01 |
[View] ConstraintLayout에서 View사이의 체인의 길이를 줄이는 법 (0) | 2020.05.29 |
Comments