Android gives you access to the assets folder (in which i have my fonts, for example) by way of getAssets(). However, I’m not seeing any way to then introspect what’s in there, and get a dynamic list of the assets.
Is this not possible?
And if not, is there an alternate location to keep things such as fonts, so that I can pull a dynamic list of what’s in there at run-time?
You can use
AssetManager.list(String path)method which returns all files at the specified path.