我正在调试这个功能:
public int colorIntWithAlpha(int color){
String colorStr;
colorStr=Integer.toHexString(color);
char[] strChar=colorStr.toCharArray();
colorStr=String.valueOf(strChar,0,6);
colorStr+="FF";
return Integer.decode(colorStr);
}
当它到达时,colorStr=Integer.toHexString(color);
我收到一条消息:
Class File Editor
Source not found