android - More efficient to directly assign or pull from XML? -
i trying reduce gc overhead size.
i noticed have several of keys bundle directly assigned string @ start of code , uses assignment later. example:
string newtimekey = "newtimekey";
is better if store string in resource xml , call @ start of program this?
string newtimekey = getstring(r.string.newtimekey);
Comments
Post a Comment