Nickle Member Licensed User Longtime User Feb 17, 2018 #1 Hi I am able to get inputtype as email with below code using ordinary EditText. B4X: txtEmail.EditText.InputType As Bit.Or(txtEmail.InputType, 0x00000020) Is is also avialable with ACEditText but I want to use FloatLabeledEditTex Is there a way to change the inputtype to email..
Hi I am able to get inputtype as email with below code using ordinary EditText. B4X: txtEmail.EditText.InputType As Bit.Or(txtEmail.InputType, 0x00000020) Is is also avialable with ACEditText but I want to use FloatLabeledEditTex Is there a way to change the inputtype to email..
Erel B4X founder Staff member Licensed User Longtime User Feb 18, 2018 #2 Yes. B4X: FloatLabeledEditText1.EditText.InputType = Bit.Or(FloatLabeledEditText1.EditText.InputType, 0x00000020) Upvote 0
Yes. B4X: FloatLabeledEditText1.EditText.InputType = Bit.Or(FloatLabeledEditText1.EditText.InputType, 0x00000020)