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
if (attrValue.startsWith("@")) {
int id = Integer.parseInt(attrValue.substring(1));
if (id != 0) {
String entryName = context.getResources().getResourceEntryName(id);
L.e("entryName = " + entryName);
if (entryName.startsWith(SkinConfig.ATTR_PREFIX)) {
skinAttr = new SkinAttr(attrType, entryName);
skinAttrs.add(skinAttr);
}
}
}
继承后,这个控件 为null,但在上面已经去找到了,取消继承后,此处没问题
The text was updated successfully, but these errors were encountered: