Hi guys!
I’m trying to work out how to add a corner radius to a TextArea in an Android project.
Any suggestions?
thanks in advance!
Michelle
Hi guys!
I’m trying to work out how to add a corner radius to a TextArea in an Android project.
Any suggestions?
thanks in advance!
Michelle
OK worked it out.
So I was using AndroidDesignExtensions 3.5 and trying to make a MobileTextArea work. Instead I can just use MobileTextField with multiline ON. This gives me the exact same style and behaviour as the single line text fields.
I just swtiched my subclass from MobileTextArea to MobileTextField and on the Opening event set to multiline:
me.SetInputTypeXC(kTYPE_CLASS_TEXT + kTYPE_TEXT_FLAG_MULTI_LINE)
Thanks Martin T.
Hope this helps the next guy