I am attempting to get and advertisers system incorporated into my android app. There are a selection of files (within a tree of directories) that I have been instructed to copy into my projects resources folder. Most of the files & directories make sense… except for the fact that inside their “drawable” directory they have a selection of XML files (along with the expected PNG files). To me this looks like a cock-up. Surely all the XML files should be within the “layout” directory?
I am attempting to get and advertisers system incorporated into my android app. There
Share
No, it’s perfectly valid. You can have XML drawables see docs about this here – read about it – these are quite powerful and flexible. Moreover, you should avoid putting other types than XML based drawables into
res/drawablesfolder. All the bitmaps should be stored intores/drawables-<QUALIFIER>(i.e.res/drawables-hdpi,res/drawables-mdpietc folders).