Android Question Using CSBuilder with EditText

npsonic

Active Member
Licensed User
Is there way to keep custom typeface added with CSBuilder for the specific words while same time using EditText to type more, edit or remove.

For example in this case I would lose all previous changes on text.
B4X:
Sub Button_Click
    Dim csb As CSBuilder
    csb.Initialize.Append(EditText.Text).Typeface(Typeface.FONTAWESOME).Append("Test").PopAll
    EditText.Text = csb
End Sub
 
Top