简体   繁体   中英

setBackgroundColor is always turn purple

Why when I change the background color through setBackgroundColor(R.id.bg_primary) always turns purple?

My color resource is

<color name="bg_primary">#FFFF0000</color>

Result在此处输入图片说明

i think when you use setBackgroundColor(R.id.bg_primary) must set color code to parameter but you send color id for parameter .

test this . maybe it work : setBackgroundResource(R.id.bg_primary);

试试setBackgroundColor(ContextCompat.getColor(context, R.color.bg_primary))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM