use night drawable variants instead of getting category icons programatically

Signed-off-by: Harry Bond <me@hbond.xyz>
This commit is contained in:
Harry Bond 2024-12-29 19:59:41 +00:00
parent d5bb82c5de
commit 766014752e
46 changed files with 0 additions and 3 deletions

View file

@ -110,10 +110,7 @@ class CategoriesAdapter extends RecyclerView.Adapter<CategoriesAdapter.ViewHolde
@NonNull String packageName,
@NonNull String key)
{
final boolean isNightTheme = ThemeUtils.isNightTheme(context);
String iconId = "ic_" + key;
if (isNightTheme)
iconId = iconId + "_night";
return context.getResources().getIdentifier(iconId, "drawable", packageName);
}

View file

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB