81
score
82.7K
views
no
status
CC BY-SA 3.0
Programmatically change the value of a color resource obtained from API response
You can create a class which extends Resources and override the methods getColor(int) and getColor(int, Theme) . Example: colors.xml Res.java BaseActivity.java This is the approach I have used in one of my apps, Root...