There is a resource in the file, which contains the following string:

<string name="Help_report_period6"> % = ( 2 часа / 22 часа ) * 100% = 9.1%. </string> 

Experienced to find this piece of string that gives an error - an unexpected tag. In parts, the line passes without errors. Where are the holy writings violated? It's all about using the% symbol more than once. What can be done to show the symbol and avoid the error?

  • Clean-build did? - Vyacheslav Martynenko
  • Perhaps some libraries are in conflict. Maybe even standard with something. Be sure to add the standard library once - Daniel Shatz

1 answer 1

Try adding the formatted="false" attribute to the string declaration. those.
<string name="Help_report_period6" formatted="false">

  • Only the correct spelling helped: formatted = "false", i.e. with two aglitskim t. - St-St
  • @ St-st, corrected in the answer) - YuriySPb