Fixing Error in styles.xml to generate R.java : No resource found name ‘Theme.AppCompat.Light’

You are trying to use Theme.AppCompat.Light theme which is a library project. You have to reference this library project to your project. Now, at first, check that you have installed this library project as follows… Go Window–>Android SDK Manager then a window named Android SDK Manager will appear as below. If the Android Support Library … Read more

What is the concept behind R.java?

Biggest advantage is in Localization and Providing alternate resources for different screen sizes. e.g you can have a String resource R.string.myname this could be a defined in english in /values-en/strings.xml and in spanish in /values-es/strings.xml System will take care or picking up the right file depending on the locale you just need to use @string/myname … Read more