Good evening! I have the following situation:
case R.id.item_cep:
corPadrao = Color.parseColor("#4DC184");
imgCircle.setColorFilter(corPadrao);
nomeRoteirizacao.setText("Por Cep");
setActivityBackgroundColor(corPadrao);
Intent intent = new Intent(getApplicationContext(),InformarEntrega.class);
Bundle params = new Bundle();
params.putString("cor","#4DC184");
intent.putExtras(params);
When I click on item_cep
it stores the color, but in another class (Class is Adapter) do I need to have this color how to proceed?
Am I doing it right? and how do I get this color in the adapter class?