==> Values style.xml --> same as style of css file in web technology string.xml --> declare string as global dimens.xml --> dimension and layout ==> Manifest --> configuration about application (project) --> each and every activity you have to register in manifest file // package name //target version code // load start page of your application ===> android activity life cycle suppose two activity a1,a2 1. create window for a1 actiity --> onCreate() 2. a1 activity visible to user --> onStart() 3. Interaction of user with activity a1 --> onResume() 4. pause a1 activity --> onPause() 5. create window for a2 activity --> onCreate() 6. a2 activity visible to user --> onStart() 7. Invisible to user a1 activity --> onStop() 8. Interaction of user with a2 activity --> onResume() 9. destroy activity --> onDestroy()