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);
<string name="title">Title Message</string>
<string name="sub_title">Sub Title Message</string>