我正在创建导航抽屉,我看到playtore有彩色菜单图标,我想知道我该怎么做.我尝试在菜单图标上使用colorFilter应用颜色,但app force关闭
这是我的代码
Konstantin L.. 15
要将所有图标刷成特定颜色,您需要添加 app:itemIconTint
到NavigationView
:
仅用2种颜色刷你的图标:
创建一个选择器:
并将其应用于app:itemIconTint
您的NavigationView
:
最后一步 - 要添加android:checked="true"
到MenuItems
您的抽屉菜单xml中,您想要刷不同:
要刷出不同颜色的所有图标,例如Google在Google Play中的图标:
禁用您的图标着色:
navigationView.setItemIconTintList(null);
添加您想要的图标res/drawable
并android:icon
在菜单的xml中指定它们.(我可以为Android图标推荐一个很好的服务icons8.com/web-app/new-icons/android)
您可以绘制现有的彩色图标,而不是上传新的彩色图标,但它非常hacky:
Drawable oldIcon = navigationView .getMenu() .findItem(R.id.nav_gallery) .getIcon(); if (!(oldIcon instanceof BitmapDrawable)) { return; } Bitmap immutable = ((BitmapDrawable)oldIcon).getBitmap(); Bitmap mutable = immutable.copy(Bitmap.Config.ARGB_8888, true); Canvas c = new Canvas(mutable); Paint p = new Paint(); p.setColor(Color.RED); p.setColorFilter(new PorterDuffColorFilter(Color.RED, PorterDuff.Mode.MULTIPLY)); c.drawBitmap(mutable, 0.f, 0.f, p); BitmapDrawable newIcon = new BitmapDrawable(getResources(), mutable); navigationView .getMenu() .findItem(R.id.nav_gallery) .setIcon(newIcon);
小心!在res/drawables-v21
模板项目中,Google使用的VectorDrawable
是s而不是旧的BitmapDrawables
,因此这段代码无法使用.
我希望,这有帮助.
要将所有图标刷成特定颜色,您需要添加 app:itemIconTint
到NavigationView
:
仅用2种颜色刷你的图标:
创建一个选择器:
并将其应用于app:itemIconTint
您的NavigationView
:
最后一步 - 要添加android:checked="true"
到MenuItems
您的抽屉菜单xml中,您想要刷不同:
要刷出不同颜色的所有图标,例如Google在Google Play中的图标:
禁用您的图标着色:
navigationView.setItemIconTintList(null);
添加您想要的图标res/drawable
并android:icon
在菜单的xml中指定它们.(我可以为Android图标推荐一个很好的服务icons8.com/web-app/new-icons/android)
您可以绘制现有的彩色图标,而不是上传新的彩色图标,但它非常hacky:
Drawable oldIcon = navigationView .getMenu() .findItem(R.id.nav_gallery) .getIcon(); if (!(oldIcon instanceof BitmapDrawable)) { return; } Bitmap immutable = ((BitmapDrawable)oldIcon).getBitmap(); Bitmap mutable = immutable.copy(Bitmap.Config.ARGB_8888, true); Canvas c = new Canvas(mutable); Paint p = new Paint(); p.setColor(Color.RED); p.setColorFilter(new PorterDuffColorFilter(Color.RED, PorterDuff.Mode.MULTIPLY)); c.drawBitmap(mutable, 0.f, 0.f, p); BitmapDrawable newIcon = new BitmapDrawable(getResources(), mutable); navigationView .getMenu() .findItem(R.id.nav_gallery) .setIcon(newIcon);
小心!在res/drawables-v21
模板项目中,Google使用的VectorDrawable
是s而不是旧的BitmapDrawables
,因此这段代码无法使用.
我希望,这有帮助.