Hi,
I need to set underline text in my TextView dynamically in activity.cs
and i don't know how to do that...
I didn't find the exmaple for mono for android C#,
example on Java (like using SpannableString doesn't work)
Can anybody help ?
--
View this message in context:
http://mono-for-androi
Jon, thanks.
You gave me idea - and i found the way ))
Example that doesn't work in my case:
TextView textView = (TextView) view.findViewById(R.id.textview);
> SpannableString content = new SpannableString("Content");
> content.setSpan(new UnderlineSpan(), 0, content.length(), 0);
> textView.se