Is there anyone knows how to refer to a defined string in a string definition, i.e.:
<string name="string_1">I am string 1</string>
and then,
<string name="string_2">I want to refer to @string/string_1</string>
<string name="string_3">@string/string_1 need to be referred here</string>
I've tried the sample codes, but it didn't work!