fix(res): resolve declare-styleable atrributes

This commit is contained in:
nitram84 2023-04-07 15:30:40 +02:00 committed by skylot
parent e1aa9f6de4
commit 7f317be325

View File

@ -211,7 +211,7 @@ public class ManifestAttributes {
MAttrType attrTyp;
if (first.getRawValue().getData() == ValuesParser.ATTR_TYPE_FLAGS) {
attrTyp = MAttrType.FLAG;
} else if (first.getRawValue().getData() == ValuesParser.ATTR_TYPE_ENUM) {
} else if (first.getRawValue().getData() == ValuesParser.ATTR_TYPE_ENUM || first.getRawValue().getData() == 65600) {
attrTyp = MAttrType.ENUM;
} else {
continue;