作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想在显示搜索时更改工具栏中后退按钮的颜色(带圆圈的白色箭头)。
我设法更改了所有其他元素的颜色,但我仍然停留在后退箭头颜色上。
我可以从 xml 中设置 collapseIcon(后退箭头可绘制):
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:collapseIcon=I_WANT_TO_SET_THIS_PROGRAMMATICALLY>
我将 app:collapseIcon
设置为我想要的任何可绘制对象并且可以正常工作,但是,我需要动态设置它。
我在这里找到的所有建议都不适合我。
不是这个:
final Drawable upArrow = ContextCompat.getDrawable(this, R.drawable. abc_ic_ab_back_material);
upArrow.setColorFilter(myColor, PorterDuff.Mode.SRC_ATOP);
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setHomeAsUpIndicator(upArrow);
或者这个:
appBar.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
Drawable d = ContextCompat.getDrawable(MyActivity.this, R.drawable.ic_back_white);
d.setColorFilter(myColor, PorterDuff.Mode.SRC_ATOP);
toolbar.setNavigationIcon(d);
// Drawable d = ContextCompat.getDrawable(MyActivity.this, R.drawable.ic_back_white);
// d.setColorFilter(myColor, PorterDuff.Mode.SRC_ATOP);
// getSupportActionBar().setHomeAsUpIndicator(d);
}
});
我没有找到其他任何东西。
有人可以帮忙吗?
谢谢
最佳答案
终于明白了...
这对我有用:
final Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
AppBarLayout appBar = (AppBarLayout) findViewById(R.id.appbar);
appBar.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
@Override
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
for (int i = 0; i < toolbar.getChildCount(); i++) {
View view = toolbar.getChildAt(i);
if (view instanceof ImageButton) {
ImageButton btn = (ImageButton) view;
Drawable drawable = btn.getDrawable();
drawable.setColorFilter(new_button_color, PorterDuff.Mode.SRC_ATOP);
btn.setImageDrawable(drawable);
}
}
}
});
关于android - 如何以编程方式设置工具栏 collapseIcon 颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44904085/
我想在显示搜索时更改工具栏中后退按钮的颜色(带圆圈的白色箭头)。 我设法更改了所有其他元素的颜色,但我仍然停留在后退箭头颜色上。 我可以从 xml 中设置 collapseIcon(后退箭头可绘制):
我正在尝试使用 Toolbar 上的 collapseIcon 来实现 android.support.v7.widget.SearchView。一切正常,即 SearchView 按预期工作,但我无
我是一名优秀的程序员,十分优秀!