ResourceValuepublic class ResourceValue extends Object implements com.android.layoutlib.api.IResourceValue
Fields Summary |
---|
private final String | mType | private final String | mName | private String | mValue | private final boolean | mIsFramwork |
Constructors Summary |
---|
public ResourceValue(String type, String name, boolean isFramwork)
mType = type;
mName = name;
mIsFramwork = isFramwork;
| public ResourceValue(String type, String name, String value, boolean isFramework)
mType = type;
mName = name;
mValue = value;
mIsFramwork = isFramework;
|
|