Im使用DataBinding
Api來設置android佈局中的視圖。這是我的佈局。我想連接兩個字符串爲Android中的TextView,數據綁定Api
layout.xml
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable name="user" type="testing.sampleapp.com.sampleapp.User"/>
</data>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{ "Hello " + user.firstName}"/>
</LinearLayout>
我想TextView的顯示Hello用戶名。如何使用數據綁定api來實現這一點。
是的,它的工作。謝謝 。我使用單引號(')。重音口音(')爲我工作。 –
@SasankSunkavalli很樂意幫助你:),使用DataBinding時總是對字符串使用重音符號。 –