Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to reference a string from another string in my strings.xml file, like below (specifically note the end of the "message_text" string content):

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="button_text">Add item</string>
    <string name="message_text">You don't have any items yet! Add one by pressing the \'@string/button_text\' button.</string>
</resources>

I've tried the above syntax but then the text prints out the "@string/button_text" as clear text. Not what I want. I would like the message text to print "You don't have any items yet! Add one by pressing the 'Add item' button."

Is there any known way to achieve what I want?

RATIONALE:
My application has a list of items, but when that list is empty I show a "@android:id/empty" TextView instead. The text in that TextView is to inform the user how to add a new item. I would like to make my layout fool-proof to changes (yes, I'm the fool in question :-)

share|improve this question

3 Answers

up vote 18 down vote accepted

I think you can't. But you can "format" a string as you like:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="button_text">Add item</string>
    <string name="message_text">You don't have any items yet! Add one by pressing the %1$s button.</string>
</resources>

In the code:

Resources res = getResources();
String text = String.format(res.getString(R.string.message_text),
                            res.getString(R.string.button_text));
share|improve this answer
1  
I was actually hoping for a "non-logic" solution. Nevertheless a fair enough answer (and a the sheer speed of it grants you a green check mark :-) – dbm Jan 20 '11 at 11:04
5  
String text = res.getString(R.string.message_text, res.getString(R.string.button_text)); is a little bit cleaner. – Andrey Novikov Jan 20 '11 at 11:23

It is possible to reference one within another as long as you reference the entire string. For example this will work:

<string name="app_name">My App</string>
<string name="activity_title">@string/app_name</string>
<string name="message_title">@string/app_name</string>

It is even more useful for setting default values:

<string name="string1">String 1</string>
<string name="string2">String 2</string>
<string name="string3">String 3</string>
<string name="string_default">@string/string1</string>

Now you can use string_default everywhere in your code and you can easily change the default at any time.

share|improve this answer
Which also answers the question: how do I refer to the app_name string in an activity title. :) – Javaman59 Nov 1 '12 at 5:16
8  
This should not read "as long as you reference the entire string" (which you always to by definition) but "as long as the referring string resource only consists of the reference name". – sschuberth Nov 20 '12 at 14:57

In Android you can't concatenate Strings inside xml

Following is not supported

<string name="string_default">@string/string1 TEST</string>

Check this link below to know how to achieve it

How to concatenate multiple strings in android XML?

share|improve this answer
Well, funny story: that's my answer to a similar question you're referencing :-) – dbm Apr 30 at 3:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.