Is there a way to refer to multiple resources inside another? It's easier to just show some sample code.
<resources>
<string name="app_name">AppName</string>
<string name="sep">--</string>
<string name="action">MyAction</string>
<string name="action_title">@string/app_name @string/sep @string/action</string>
</resources>
So that @string/action_title should be AppName -- MyAction
However, when I use this it seems that R.java just chokes and doesn't get built. Am I missing something or is this just impossible?
Edit I am using this to label BroadcastReceivers in my AndroidManifest.xml so doing it in code doesn't seem to be an option.