I have a edittext that no longer wraps like it should. I have the following code in my app:
I found this on the forums and it used to work.
I also have:
SingleLine = False
Wrap = True
in Designer
and it looks like this:
Also, how can I go back to the box style edittext versus the line. Where the line looks more elegant some users like the box style.
Thank you,
Douglas
I found this on the forums and it used to work.
B4X:
Activity.LoadLayout("edit")
edtPurpose.InputType = Bit.OR(edtPurpose.INPUT_TYPE_TEXT, 16384)
edtPurpose.Wrap = True
SingleLine = False
Wrap = True
in Designer
and it looks like this:
Also, how can I go back to the box style edittext versus the line. Where the line looks more elegant some users like the box style.
Thank you,
Douglas