With a resource such as:
<string name="str">ends with a space </string>
the space that the end is lost.
<string name="str">ends with a space </string>
keeps the space, but android treats it as a none breaking space.
Is there a way to specify a breaking space at the end of a resource string? This is for a library function, so I have no idea what strings might be specified in the resource.
Obviously I have considered:
<string name="str">ends with a space£</string>
<string name="my_breaking_space_at_end_of_android_resource">£</string>
and use a regEx.