I have a layout that is covered entirely by a tint overlay (it's the last element in my RelativeLayout).
- I have
TextView1
andTextView2
withtextColor
set to red (#FF0000
). - My tint overlay is grey with transparency set -
#88676767
. - I want my
TextView1
tinted butTextView2
appear red (#FF0000
).
Is there a way for me to calculate color value X
for TextView2
so when it is overlayed with a tint layer it appears to the user as red (#FF0000
)? If so, how do I go about calculating this value?