Change the font of tab text in android design support TabLayout

前端 未结 18 1724
执念已碎
执念已碎 2020-11-27 13:38

I\'m trying to work on the new TabLayout from the android design library.

I want to change tab text to custom font. And,I tried to sear

18条回答
  •  悲&欢浪女
    2020-11-27 14:15

    Well, i found it simple in 23.4.0 without using a loop. Just override addTab(@NonNull Tab tab, boolean setSelected) as suggested by @ejw.

    @Override
    public void addTab(@NonNull Tab tab, boolean setSelected) {
        CoralBoldTextView coralTabView = (CoralBoldTextView) View.inflate(getContext(), R.layout.coral_tab_layout_view, null);
        coralTabView.setText(tab.getText());
        tab.setCustomView(coralTabView);
    
        super.addTab(tab, setSelected);
    }
    

    And here is the XML

    
    
    

    Hope it could help :)

提交回复
热议问题