fillColor = (fillColor & (0xFF << 24)) | (colorRGB & 0xFFFFFF);
Above is my code, and I think this should be OK. But the Android Studio give me a warning saying :
Numeric overflow in expression less... (Ctrl+F1)
This inspection checks for expressions which overflow during computation, i.e.: a = 1.0/0.0;
I can not find what is the matter with the code, please help.