我正在尝试通过代码更改MenuItem的文本和图标颜色。我已经搜索了解决方案的操作方法,并且文本已更改,但图标未更改。
这是我的代码:
public void setItemOptionColor(boolean isActive){
MenuItem menuItem = mDrawerNavigationView.getMenu().findItem(R.id.my_item);
SpannableString spannableString = new SpannableString(menuItem.getTitle());
Drawable drawable = menuItem.getIcon();
if(isActive){
spannableString.setSpan(new ForegroundColorSpan(ContextCompat.getColor(getContext(), R.color.accent)), 0, spannableString.length(), 0);
DrawableCompat.setTint(drawable,getResources().getColor(R.color.accent));
//drawable.setColorFilter(getResources().getColor(R.color.accent), PorterDuff.Mode.SRC_ATOP);
//drawable.setTint(getResources().getColor(R.color.accent));
}
menuItem.setIcon(drawable);
menuItem.setTitle(spannableString);
}
现在,要更改图标颜色,我正在使用DrawableCompat
,但是我的另外两次尝试也被注释掉了。这三种方法均无效。
我还要补充一点,即使我从xml文件中删除了将默认色调设置为白色,即使可绘制文件原本是黑色的,该图标仍然显示为白色。而且我不知道为什么会这样,也许它与问题有关
答案 0 :(得分:1)
public void setItemOptionColor(boolean isActive) {
mDrawerNavigationView.setItemIconTintList(null); // add this line
MenuItem menuItem = mDrawerNavigationView.getMenu().findItem(R.id.my_item);
SpannableString spannableString = new SpannableString(menuItem.getTitle());
Drawable drawable = menuItem.getIcon();
if (isActive) {
int color = ContextCompat.getColor(getContext(), R.color.accent);
spannableString.setSpan(new ForegroundColorSpan(color), 0, spannableString.length(), 0);
DrawableCompat.setTint(drawable, getResources().getColor(R.color.accent));
}
menuItem.setIcon(drawable);
menuItem.setTitle(spannableString);
}