You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
发现问题了 Color.WHITE public static final int WHITE = 0xFFFFFFFF; 好像就是-1;
BACKGROUD("background") { @OverRide
public void apply(View view, String resName) {
Drawable drawable = getResourceManager().getDrawableByName(resName);
if (null!=drawable){
view.setBackgroundDrawable(drawable);
}else{
int color = getResourceManager().getColor(resName);
if(color==-1){
return ;
}
view.setBackgroundColor(color);
}
}
这个操作包括removeanyskin() 没时间看源码了 先拿#FFFFFE凑活
The text was updated successfully, but these errors were encountered: