美文网首页
Android给Toolbar设置字体

Android给Toolbar设置字体

作者: Mus_fy | 来源:发表于2020-08-10 21:35 被阅读0次

Toolbar toolBar=xxxxxx;

TypeFace mTf=xxxxxx;

给大标题设置字体:

TextView bigTitle=(TextView)toolBar.getChildAt(0);

bigTitle.setTypeFace(mTf);


给小标题设置字体:

TextView bigTitle=(TextView)toolBar.getChildAt(1);

bigTitle.setTypeFace(mTf);


Toolbar中控件的序号我给标记在下方了,直接用getChildAt就可以获取

这个序号其实还代表着优先级,大标题序号一直是0,小标题若存在则是1若不存在就该左边的Navigation控件是1,然后才轮到右边的Overflow控件

相关文章

网友评论

      本文标题:Android给Toolbar设置字体

      本文链接:https://www.haomeiwen.com/subject/zgrsdktx.html