Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to retrieve a view's background color and compare it to a color resource

Tags:

android

I'm trying to compare whether the background color of one of my views is equal to a color resource I created and haven't found anything that works.

I'm willing to use any method, whether converting to HEX or String or Int, as long as it works. Here's an example of my current method.

I set the background color of a view with:

chosenColor.setBackgroundColor(getResources().getColor(R.color.tag_pink));

When I retrieve it using this method:

ColorDrawable chosenColorBox = (ColorDrawable) chosenColor.getBackground();  
int colorId =  chosenColorBox.getColor();

colorId == `-611329` 

Using Integer.toString on R.color.tag_pink shows the value as 2130968581 which obviously can't be compared in an if statement" with the retrieved value.

What's the best way to do this so I don't have to resort to hard-coding the individual values, which prevents me from adjusting the color resources?

like image 720
papium Avatar asked Nov 07 '25 16:11

papium


1 Answers

Try to compare the color to Context.getResources().getColor(R.color.tag_pink) instead of the resource's ID (which is not the color!). The returned value represents the color in the form of 0xAARRGGBB.

like image 128
Rayne Avatar answered Nov 10 '25 07:11

Rayne



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!