하드 코딩 된 문자열이있는 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 is {Profile.name}이 되도록하고 싶습니다 . 어떤 도움이라도 좋을 것입니다.