int[] colors = new int[]{getResources().getColor(R.color.black),
getResources().getColor(R.color.themeColor)
};
ColorStateList csl = new ColorStateList(states, colors);
bottomNavigationView.setItemTextColor(csl);
bottomNavigationView.setItemIconTintList(csl);
网友评论