Due to language differences I need to have a separate landscape layout for German. How ever I created a new folder in eclipse to hold the layout but now I`m getting an error.
Is the name of the folder correct
Heres a link to a screenshot capture
https://docs.google.com/file/d/0B9OVrUvUh2stdmhkQzNFNkcxS28/edit
To support different your app in different language, you can have two options to achieve these.
A. Most Preferred way
You just need to add
res/values-__/string.xmldifferentstring.xml.To support German language you just need to add
res/values-de/strings.xmlwhich contain your string values in german whichAndroid can display to user at runtime on the basis of their locale.B. Increases app size as new layout created as per language.
You need to change the folder name to
layout-de-landas per developer.android.com