Simple&Natural

[Android] BottomNavigationView Text Size 변경 방법 본문

안드로이드(Android)/기타

[Android] BottomNavigationView Text Size 변경 방법

Essense 2020. 10. 10. 02:23
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