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 a two-dimensional array (of Strings) which make up my data table (of
I have a .NET string which is Base64 encoded representation of an array of
I'm using .NET 3.5. I have two string arrays, which may share one or
I have a one-dimensional array of strings in JavaScript that I'd like to turn
Overview: I have an array of 20 byte strings that needs to be stored
What is the PHP preg_replace in C#? I have an array of string that
Lets say I have an array like this: string [] Filelist = ... I
Say I have an array of strings in a php array called $foo with
I have an array of 1000 strings to load into a combo box. What
I have a simple 2D array of strings and I would like to stuff

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.