Salimalhajri Member Licensed User Longtime User Oct 23, 2015 #1 Hello everyone Some applications text box email change the keyboard to Like the picture attached What are the settings ? Thanks Attachments tempFileForShare_??? ٥-١٠-٢٤-٠٢-٤٧-٥٥.jpg 99.1 KB · Views: 213
Hello everyone Some applications text box email change the keyboard to Like the picture attached What are the settings ? Thanks
R Roycefer Well-Known Member Licensed User Longtime User Oct 24, 2015 #2 Try this: B4X: Dim et as EditText et.Initialize("et") et.InputType = 32 I haven't tested this, so beware. See here for more options and info: http://developer.android.com/reference/android/text/InputType.html#TYPE_TEXT_VARIATION_EMAIL_ADDRESS You can also set different input types in the Visual Designer (though the email input type isn't one of those options). Upvote 0
Try this: B4X: Dim et as EditText et.Initialize("et") et.InputType = 32 I haven't tested this, so beware. See here for more options and info: http://developer.android.com/reference/android/text/InputType.html#TYPE_TEXT_VARIATION_EMAIL_ADDRESS You can also set different input types in the Visual Designer (though the email input type isn't one of those options).
D Dman Active Member Licensed User Longtime User Oct 24, 2015 #4 I think this will do it also. B4X: txtEmail.InputType = Bit.OR(txtEmail.InputType, 0x00000020) Upvote 0