我有一个TextView,它具有一个硬编码的字符串,并且有一个动态变量,我想将其放在该字符串的末尾。这是我的代码:
<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>
我有一个问题 android:text="@string/Generic_Text"+"@{ Profile.name }"
。该Generic_Text
州“我的名字是”,则Profile.name
是动态的,显然从个人资料的更改配置文件。我想要它,以便整个TextView输出为My Name为{Profile.name}。任何帮助都会很棒。