Reputation: 6339
I have an array of strings in which the %
symbol is used. Proper format for using the %
is %
. When I have a string in that array with multiple %
it gives me this error.
Multiple annotations found at this
line:
- error: Multiple substitutions specified in non-positional format;
did you mean to add the formatted="false" attribute?
- error: Found tag </item> where </string-array> is expected
Upvotes: 352
Views: 153671
Reputation: 61
I had a bit different case. I was generating my own XML file from localization website and I could not make lint check work without displaying double %% sign in device. I received lint error for using percent sign without using String.format
I replaced all non formatting % signs to: \u0025
Upvotes: 2
Reputation: 1279
You can escape % using %% for XML parser, but it is shown twice in device.
To show it once, try following format: \%%
For Example
<string name="zone_50">Fat Burning (50\%% to 60\%%)</string>
is shown as
Fat Burning (50% to 60%)
in device
Upvotes: 123
Reputation: 1810
to escape the percent symbol, you just need %%
for example :
String.format("%1$d%%", 10)
returns "10%"
Upvotes: 22
Reputation: 338
Not exactly your problem but a similar one.
If you have more than one formatting in your string entry, you should not use "%s" multiple times.
DON'T :
<string name="entry">Planned time %s - %s (%s)</string>
DO :
<string name="entry">Planned time %1$s - %2$s (%3$s)</string>
Upvotes: 8
Reputation: 1300
Per google official documentation, use %1$s and %2$s http://developer.android.com/guide/topics/resources/string-resource.html#FormattingAndStyling
Hello, %1$s! You have %2$d new messages.
Upvotes: 2
Reputation: 17507
A tricky method: using small percent sign as below
<string name="zone_50">Fat Burning (50﹪ to 60﹪)</string>
Upvotes: 7
Reputation: 11565
Use
<string name="win_percentage">%d%% wins</string>
to get
80% wins
as a formatted string.
I'm using String.format()
method to get the number inserted instead of %d
.
Upvotes: 59
Reputation: 3033
This could be a case of the IDE becoming too strict.
The idea is sound, in general you should specify the order of substitution variables so that should you add resources for another language, your java code will not need to be changed. However there are two issues with this:
Firstly, a string such as:
You will need %.5G %s
to be used as You will need 2.1200 mg will have the order the same in any language as that amount of mass is always represented in that order scientifically.
The second is that if you put the order of variables in what ever language your default resources are specified in (eg English) then you only need to specify the positions in the resource strings for languages the use a different order to your default language.
The good news is that this is simple to fix. Even though there is no need to specify the positions, and the IDE is being overly strict, just specify them anyway. For the example above use:
You will need %1$.5G %2$s
Upvotes: 5
Reputation: 15573
In your strings.xml file you can use any Unicode sign you want.
For example, the Unicode number for percent sign is 0025:
<string name="percent_sign">%</string>
You can see a comprehensive list of Unicode signs here
Upvotes: 15
Reputation: 4411
Try this one (right):
<string name="content" formatted="false">Great application %s ☞ %s ☞ %s \\n\\nGo to download this application %s</string>
Upvotes: 3
Reputation: 91
You can escape the % in xml with %%, but you need to set the text in code, not in layout xml.
Upvotes: 9
Reputation: 2009
To allow the app using formatted strings from resources you should correct your xml. So, for example
<string name="app_name">Your App name, ver.%d</string>
should be replaced with
<string name="app_name">Your App name, ver.%1$d</string>
You can see this for details.
Upvotes: 163
Reputation: 74557
The Android Asset Packaging Tool (aapt
) has become very strict in its latest release and is now used for all Android versions. The aapt-error you're getting is generated because it no longer allows non-positional format specifiers.
Here are a few ideas how you can include the %-symbol in your resource strings.
If you don't need any format specifiers or substitutions in your string you can simply make use of the formatted
attribute and set it to false
:
<string formatted="false">%a + %a == 2%a</string>
In this case the string is not used as a format string for the Formatter
so you don't have to escape your %-symbols. The resulting string is "%a + %a == 2%a".
If you omit the formatted="false"
attribute, the string is used as a format string and you have to escape the %-symbols. This is correctly done with double-%:
<string>%%a + %%a == 2%%a</string>
Now aapt
gives you no errors but depending on how you use it, the resulting string can be "%%a + %%a == 2%%a" if a Formatter
is invoked without any format arguments:
Resources res = context.getResources();
String s1 = res.getString(R.string.str);
// s1 == "%%a + %%a == 2%%a"
String s2 = res.getString(R.string.str, null);
// s2 == "%a + %a == 2%a"
Without any xml and code it is difficult to say what exactly your problem is but hopefully this helps you understand the mechanisms a little better.
Upvotes: 506