这是我的Java代码,用于为菜单项设置fontawesome
item.findItem(R.id.item_menu).setIcon(
new IconDrawable(this, FontAwesomeIcons.fa_share)
.colorRes(R.color.ab_icon)
.actionBarSize());
我从以下代码中获得了
How to set the font awesome icons in menu items in android?
它对我不起作用,我想为bottomNavigation设置fontawesome 项目以及导航抽屉项目。请帮助我解决此问题 问题