Posts

Showing posts with the label Change Image Resource As Per Culture

Change Image Resource As Per Culture in Android

Image
Many times we have to add different language support for the customers. Based on that locale we have to load the resources. This example will show you how to change the image resources as per the locale. Note: You have to give the same name to the resources that is change as per the locale. For Example, I f you have two flags one for Australia and one for India then both of these flags have the same name for example  ic_flag or any you want. (Shown below in this example avoid for now)        First, you have to add your string in the string.xml file. string.xml ( For English) <resources>     <string name="app_name">MultiLanguageSupportDemo</string>    <string name="str_welcome">Welcome</string>    <string name="str_username">Username</string> <string name="str_password">Password</string>     <string name=...