android-如何在不设置样式栏的情况下动态更改所有ToolBar图标的颜色
作者:互联网
我一直在寻找一种方法来动态更改工具栏(如ActionBar)中所有元素的颜色.
规格:
>在styles.xml上使用parent =“ Theme.AppCompat.Light.NoActionBar”
> Appcompat v7 22
>在我的AppCompatActivity中设置setSupportActionBar()
>我从POST请求中获得了颜色(通常是#FF ——格式)
我已阅读以下帖子:
> How do I change the color of the ActionBar hamburger icon?
> How to change color of hamburger icon in material design navigation drawer
> Can’t change navigation drawer icon color in android
> ActionBarDrawerToggle v7 arrow color
> Android Toolbar color change
> Android burger/arrow icon dynamic change color(这在某种程度上可行,但我不喜欢使用自己的无动画图片).
以及与此主题相关的其他链接…没有一个对我有用.
我现在正在做的是在工具栏(Get reference to drawer toggle in support actionbar)上搜索ImageButton,然后将setColorFilter()应用于所有代码,如以下代码所示:
for (int i = 0; i < toolbar.getChildCount(); i++){
if (toolbar.getChildAt(i) instanceof ImageButton) {
ImageButton ib = (ImageButton) toolbar.getChildAt(i);
ib.setColorFilter(Color.parseColor("#A74231"), PorterDuff.Mode.SRC_ATOP);
}
}
我使用以下工具更改背景和文本颜色:工具栏.setBackgroundColor和工具栏.setTitleTextColor.
对于菜单图标(包括溢出菜单图标):
MenuItem item2 = mMenu.findItem(R.id.actionbar_group_moreoverflow);
item2.getIcon().setColorFilter(color, PorterDuff.Mode.SRC_ATOP);
问题:是否有更好的方法(动态更改工具栏元素的颜色)?
解决方法:
我在这里面临着同样的问题.我为ToolBar的元素做了什么:
>对于背景颜色:toolbar.setBackgroundColor(Color.parseColor(“#xxxxxxxx”));
>对于文本颜色:toolbar.setTitleTextColor(Color.parseColor(“#xxxxxxxx”));
>对于汉堡/抽屉按钮:
int color = Color.parseColor("#xxxxxxxx");
final PorterDuffColorFilter colorFilter = new PorterDuffColorFilter(color, PorterDuff.Mode.SRC_ATOP);
for (int i = 0; i < toolbar.getChildCount(); i++){
final View v = toolbar.getChildAt(i);
if(v instanceof ImageButton) {
((ImageButton)v).setColorFilter(colorFilter);
}
}
>对于ActionMenuItemView(工具栏的按钮,包括溢出按钮):
private void colorizeToolBarItem(AppCompatActivity activity, final PorterDuffColorFilter colorFilter, final String description) {
final ViewGroup decorView = (ViewGroup) activity.getWindow().getDecorView();
final ViewTreeObserver viewTreeObserver = decorView.getViewTreeObserver();
viewTreeObserver.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
final ArrayList<View> outViews = new ArrayList<>();
decorView.findViewsWithText(outViews, description,
View.FIND_VIEWS_WITH_CONTENT_DESCRIPTION);
if (outViews.isEmpty())
return;
ActionMenuItemView overflow = (ActionMenuItemView)outViews.get(0);
overflow.getCompoundDrawables()[0].setColorFilter(colorFilter);
removeOnGlobalLayoutListener(decorView,this);
}
});
}
>对于溢出菜单的项目文本:take a look at this link
标签:android-imagebutton,android-toolbar,android-appcompat,android 来源: https://codeday.me/bug/20191027/1948041.html