Is it possible to put variables inside string-resources? And if yes - how do i use them.
What i need is the following:
You shot %1$d pounds of meat! int numPoundsMeat = 123; String strMeatFormat = getResources().getString(R.string.meatShootingMessage, numPoundsMeat);
Example taken from here