-2

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.

2 Answers2

1

you can try this

<string name="title"><u><b><i>\"Nilesh Rathod\"</i></b></u></string>
AskNilesh
  • 67,701
  • 16
  • 123
  • 163
0

You simply need to add it like below

<string name>="value">\"my text\"</string>

and it will show double quotes when you use it.

Rahul Khurana
  • 8,577
  • 7
  • 33
  • 60