Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3494334
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T11:59:37+00:00 2026-05-18T11:59:37+00:00

I have an array of strings in which the % symbol is used. Proper

  • 0

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
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T11:59:38+00:00Added an answer on May 18, 2026 at 11:59 am

    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.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this 4 Dimensional array to store String values which are used to
I have this string of numbers var array = 1,6,2,9,5 which is retrieved from
I have an array of strings in python which each string in the array
I have a method which takes an array of strings as parameter and queries
I have a string array which holds the name of 500 stocks. Now i
I have a string array selectCancel with setter and getter methods, which is a
I have written an assembly in C# which returns a string array, the C#
I have a string say string s =C:\\Data , I have an array which
I have array of strings, String[] data and it's 10 elements has value P
In C#, Say you have an array of strings, which contain only characters '0'

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.