我有一个 ListView,我希望这些项目在按下时显示与 Holo Blue 不同的颜色。所以我做了一个可绘制的选择器,效果很好。
我的颜色是FFF100
,漂亮的黄色。
但是,我认为它有点太饱和了,所以我想降低 alpha 以使其更像我的选项卡指示器,这是通过图像文件完成的。它具有相同的颜色,FFF100
但不透明度为 50%。
所以我将颜色更改为 ARGB 值,使用80
(128/255) 作为 alpha 值。所以我的颜色是现在80FFF100
。
但现在它看起来像一个奇怪的绿色!
还有我的colors.xml:
<resources>
<color name="putio_accent">#FFF200</color> **This is the standard yellow color. Using this works fine, but it's too saturated, like I said before.
<color name="putio_accent_selected">#80FFF100</color> **This should be the same, but with 50% alpha..
</resources>
为什么会这样?!