私はこの機能をデバッグしています:
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