css - Android: How to style for a link in file string.xml? -


i have created custom dialog information app. 1 of them hyperlink text string.xml file, content this:

<string name="copyright">bản quyền © 2014 thuộc  <a href="https://www.facebook.com/nguyen.ngochoang.758" style="text-   decoration:none;">nguyễn ngọc hoàng</a></string> 

it work ok, hyperlink has underline. so, how can style link css above, in code.

hi use given below formatted lines

   <string name="copyright">bản quyền © 2014 thuộc          <a href="https://www.facebook.com/nguyen.ngochoang.758"  style="text-decoration:none;">nguyễn ngọc hoàng</a></string> 

i checked @ http://www.w3schools.com/html/tryit.asp?filename=tryhtml_linknoline , working fine, please copy given lines , paste @ given web link , check, work fine!!


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -