There are two ways.
First Solution
concat with grave accent (`)
android:text="@{`Hello ` + user.firstName}"/>
Second Solution
Declare Your string in strings.xml
like "Hello %1$s , (whatever you want to add then add here)".
amd use String.format(stringResource, upsatename);