Strings
-
Static:
android:text="@string/sell_recommend_views_label"
-
Concat resources:
android:text="@{'Hello ' + user.firstName}"
-
Concat resource and var (Include
%1s
formatting in String resource):android:text='@{String.format(@string/string_name, uxContent.reduceByPrice)}'
-
Formatted:
android:text='@{@string/some_string(uxContent.someVal, uxContent.someVal)}'