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
assets
but not underraw
b. You can list all resources dynamically in the
assets
folder but not in theraw
folder.
So, why would I use Raw resources in Android?