Android Question EditText carriage return

imgsimonebiliato

Well-Known Member
Licensed User
Longtime User
Hello,
I fill an EditText with a custom text of 80 characters. When the text is on the right margin of the edit, it doesn't go to the next row (like a label), so full text is write on the same first row.

How do I perform a carriage return?
 

netsistemas

Active Member
Licensed User
Longtime User
i needed set by code. May be property inputtype change the values in layout designer.
This is my final code:
B4X:
 txtNotas.InputType = Bit.Or (Bit.Or (1, 16384), 112)

    txtNotas.SingleLine = Falso

    txtNotas.Wrap = True
 
Upvote 0
Top