tags:

views:

86

answers:

2

What is the importance of "res" and "src" folders in eclipse-android while creating android project.

A: 

src contains java classes. res contains various stuff, including images to be used in your projects, layouts etc.

LucaB
+1  A: 

src is where your source files go, res is where your resource files go (icons, images, externalised strings for internationalisation and so forth).

paxdiablo