Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set layout background tint from string programmatically?

I tried this code:

LinearLayout someLayout=(LinearLayout)view.findViewById(R.id.someLayout);
        someLayout.setBackgroundTintList(context.getResources().getColorStateList(Color.parseColor("#ff8800")));

But I'm getting an error: android.content.res.Resources$NotFoundException I'm getting the color hex from external source so I can't embed it in colors.xml. Also I want to change the tint, not the background so setBackground is not an option.

like image 543
Waseem Avatar asked Dec 15 '17 17:12

Waseem


2 Answers

I figured I can't use getColorStateList() so I searched for another way to do it. At the end I was able to set color tint using the following code:

LinearLayout someLayout=(LinearLayout)view.findViewById(R.id.someLayout);
        someLayout.getBackground().setColorFilter(Color.parseColor("#ff8800"), PorterDuff.Mode.SRC_ATOP);

This worked as if I changed the backgroundTint property in the xml file, so it's perfect for my problem.

like image 161
Waseem Avatar answered Nov 15 '22 14:11

Waseem


I was able to manage using the following line. change it to your circumstances.

myView.getBackground().setTint(currentView.getResources().getColor(R.color.colorAccent));
like image 38
Jin Lim Avatar answered Nov 15 '22 12:11

Jin Lim