Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

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);
 
PREVIOUS NEXT
Tagged: #How #I #put #parameter #localized #string
ADD COMMENT
Topic
Name
5+8 =