Android Multi-Language Support

By default android takes English as primary language but if you want to support any other language you just need to create a string.xml file that. For this example we learn how to do multi-language support in our application. You have to note some things before implementing multi-language support in the application. 1) Don't set static text directly with the component. Instead use string resources. tv.setText( “ Hello ”) //Don’t First, create a string in a string.xml file than use. <string name=“str_hello”>Hello</string> tv.setTExt(R.string.str_hello); //Do 2) If your application supports any language from below then you need to ...