Simple&Natural
[Android] BottomNavigationView Text Size 변경 방법 본문
728x90
BottomNavigationView의 TextSize는 보통 Active 상태에서 14sp, InActive 상태에서 12sp로 설정되어 있다.
아래는 material library에 있는 value.xml 파일이다.
value.xml
해당 기본값을 커스텀하기 위해서는 프로젝트의 value 리소스 폴더에 dimens.xml을 만들고
다음과 같은 코드를 이용해 기존의 textSize를 오버라이드 해주면 된다.
dimens.xml
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
//Custom BottomNavigationView TextSize
<dimen name="design_bottom_navigation_text_size" tools:override="true">10sp</dimen>
<dimen name="design_bottom_navigation_active_text_size" tools:override="true">10sp</dimen>
</resources>
728x90
'안드로이드(Android) > 기타' 카테고리의 다른 글
[Android] Retrofit으로 파라미터 선택적으로 보내기 (0) | 2020.10.14 |
---|---|
[Android] Navigation Component 사용시 각 Fragment Toolbar의 뒤로가기 버튼 없애기 (0) | 2020.10.10 |
[Android] BottomNavigationView + Nav Component 연동 시 유의사항 정리 (0) | 2020.10.10 |
[Android] Admob 오류 종류 (0) | 2020.10.09 |
[Android] 애드몹(Admob) 연동하기 (0) | 2020.10.08 |