I'm in the mid of my Android studies, and I just covered the Assets and Raw resources. I'm trying to understand the reason for using Raw resources vs. Assets.
They both provide with an uncompiled resource input stream.
It seems that Assets provide much more flexibility and functionality than Raw resources.
a. You can create folder structures under
assetsbut not underrawb. You can list all resources dynamically in the
assetsfolder but not in therawfolder.
So, why would I use Raw resources in Android?