I have 2 string resouces
file:
<string name="label_1">Dumb1</string>
<string name="label_2">Dumb2</string>
In TextView
, I want TextView
shows static text: Dumb1Dumb2
. How I do it in XML
layout file without define a new String resouce
? Can I do it? Thanks everyone!
Sometimes, I must use many static strings
such as: Name:
and Name
(and more such type of string). So, how to avoid it? can I define Name
and :
, and set in xml
: Name:
?