Android Question Is it possible to underline part of a field?

peggjones

Active Member
Licensed User
Longtime User
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
Upvote 0

Mahares

Expert
Licensed User
Longtime User
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
Top