I've declared a string
<string name="body_activity_welcome">Hello! <br />This is the welcome page. Only logged in users can see this page.</string>
But I want to personally greet the user
<string name="body_activity_welcome">Hello {$username}! <br />This is the welcome page. Only logged in users can see this page.</string>
Is there a way to pass data to a language string when fetching it?
TextView text = (TextView) findViewById(R.id.register_status_message);
text.setText(R.string.body_activity_welcome); // somehow pass username to the string?