P peggjones Active Member Licensed User Longtime User Aug 1, 2019 #1 I want to display some text in an edit text with some words underlined. How would I do the underling? Thanks to
I want to display some text in an edit text with some words underlined. How would I do the underling? Thanks to
DonManfred Expert Licensed User Longtime User Aug 1, 2019 #2 peggjones said: How would I do the underling? Click to expand... I never saw any such feature in Androidapps. I don´t think this is possible. Upvote 0
peggjones said: How would I do the underling? Click to expand... I never saw any such feature in Androidapps. I don´t think this is possible.
MarcoRome Expert Licensed User Longtime User Aug 1, 2019 #3 Type this ? if yes look https://www.b4x.com/android/forum/threads/charsequence-csbuilder-tutorial.76226/#content Upvote 0
Type this ? if yes look https://www.b4x.com/android/forum/threads/charsequence-csbuilder-tutorial.76226/#content
M Mahares Expert Licensed User Longtime User Aug 1, 2019 #4 Here is an example in its simplest form: B4X: Dim cs As CSBuilder cs.Initialize.Append("Fo").Underline.Append("rum").PopAll EditText1.Text=cs Upvote 0
Here is an example in its simplest form: B4X: Dim cs As CSBuilder cs.Initialize.Append("Fo").Underline.Append("rum").PopAll EditText1.Text=cs