I have my text store in string xml inside double quotes
<string name>="value">"my text"</string>
How do I add style like bold italic to the text that I put inside double quotes.
I have my text store in string xml inside double quotes
<string name>="value">"my text"</string>
How do I add style like bold italic to the text that I put inside double quotes.
you can try this
<string name="title"><u><b><i>\"Nilesh Rathod\"</i></b></u></string>
You simply need to add it like below
<string name>="value">\"my text\"</string>
and it will show double quotes when you use it.