Ich habe eine Textansicht mit einer fest codierten Zeichenfolge und 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 mit android:text="@string/Generic_Text"+"@{ Profile.name }"
. Der Generic_Text
Status "Mein Name ist" ist dann Profile.name
dynamisch und ändert sich offensichtlich von Profil zu Profil. Ich möchte, dass die gesamte TextView-Ausgabe Mein Name ist {Profilname} . Jede Hilfe wäre großartig.