I want to display such a title in my screen, "Up to 30% cheaper".
So, I have this in my xml file: <string name="title">Up to %d%% cheaper</string>
and In code: mTitle.setText(getString(R.string.title, 30));
Although it works fine and I see above message however I am getting lint error that says:
How to get rid of this error?