Answers for "get string function in android"

2

android string java

Let's say you want to display this and also translate it:
Hello, [display name]! You have [display an other variable] new messages.

Put your string in the strings.xml file with this %n$s as fields:
<string name="welcome_messages">Hello, %1$s! You have %2$d new messages.</string>

Get and set in your class in this way:
Resources res = getResources(); //previously done
String text = String.format(res.getString(R.string.welcome_messages), username, mailCount);
Posted by: Guest on January-03-2022
2

android studio get string

val myString = getString(R.string."myStringID")
Posted by: Guest on March-15-2021

Code answers related to "get string function in android"

Browse Popular Code Answers by Language