Android - How to change bottom navigation bar text's font family

后端 未结 11 1530
北荒
北荒 2020-12-14 00:27

I have created a bottom bar navigation in my android page. But now I want to apply the custom font-family in bottom navigation texts.

This is the bottom navigation c

11条回答
  •  半阙折子戏
    2020-12-14 01:16

    add the font file in the res/font/ folder to bundle fonts as resources

    then

    You can change it using style resources. In your styles.xml:

    
    

    Then apply it as a theme in your view:

    
    

    Just checked on my app, it works fine.

    reference: https://developer.android.com/guide/topics/ui/look-and-feel/fonts-in-xml.html#fonts-in-code

提交回复
热议问题