how to create countries names table to android app code example
Example: How can I put a parameter into a localized string in Android?
// I use this in my string resource.
<string name="duration"><xliff:g id="minutes" example="42" >%s</xliff:g> mins <xliff:g id="seconds" example="28" >%s</xliff:g> secs</string>
// Which prints xx mins yy secs when you call:
getString(R.string.duration, minutes, seconds);