Wie verwende ich die Datenbindung, um eine Zeichenfolge aus Ressourcen mit einer dynamischen Variablen in XML zu kombinieren?

Ich habe eine TextView mit einer fest codierten Zeichenfolge und ich habe eine dynamische Variable, die ich am Ende dieser Zeichenfolge einfügen möchte. Das ist mein Code:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_marginLeft="16dp"
    android:layout_marginRight="16dp">
    <TextView
        android:id="@+id/PeopleName"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="@string/Generic_Text"+"@{ Profile.name }" />


</LinearLayout>

Ich habe ein Problem mitandroid:text="@string/Generic_Text"+"@{ Profile.name }". DasGeneric_Text gibt "Mein Name ist" an, dann dasProfile.name ist dynamisch und ändert sich offensichtlich von Profil zu Profil. Ich möchte es so, dass die gesamte TextView-Ausgabe @ iMein Name ist {Profile.name}. Jede Hilfe wäre toll.