Write % in strings.xml of android
%%
seems to be all that works for me. For example:
<string name="num_percent">%1$d %%</string>
with
String oneHundredPercentString = getString(R.string.num_percent, 100); // This gives "100 %"
You can use its code. Try this: %
Also check the similar question: Android XML Percent Symbol