D devmobile Active Member Licensed User May 16, 2017 #1 Hello Edittext have many inputtype in java but basic don't have it Example URL or email or other Please add this type in designer Also add search views in designer that we can search view with it's name Thanks
Hello Edittext have many inputtype in java but basic don't have it Example URL or email or other Please add this type in designer Also add search views in designer that we can search view with it's name Thanks
R ronell Well-Known Member Licensed User Longtime User May 16, 2017 #2 post this thread in wishlist forum https://www.b4x.com/android/forum/forums/bugs-wishlist.30/ Upvote 0
D devmobile Active Member Licensed User May 16, 2017 #3 ronell said: post this thread in wishlist forum https://www.b4x.com/android/forum/forums/bugs-wishlist.30/ Click to expand... Ok But first question isn't wish and can solved Upvote 0
ronell said: post this thread in wishlist forum https://www.b4x.com/android/forum/forums/bugs-wishlist.30/ Click to expand... Ok But first question isn't wish and can solved
Cableguy Expert Licensed User Longtime User May 16, 2017 #4 Also, input validation is not that difficult to implement for most common input types Upvote 0
D devmobile Active Member Licensed User May 16, 2017 #5 Cableguy said: Also, input validation is not that difficult to implement for most common input types Click to expand... I know that validation is easy But it is good that user see needing keys in keyboard example @ Upvote 0
Cableguy said: Also, input validation is not that difficult to implement for most common input types Click to expand... I know that validation is easy But it is good that user see needing keys in keyboard example @
Cableguy Expert Licensed User Longtime User May 16, 2017 #6 For that you can use the prompt or default text property to show "sample" input Upvote 0
R ronell Well-Known Member Licensed User Longtime User May 16, 2017 #7 B4X: if emailtxt.text.contains ("@") = false then toastmessageshow("input email",false) end if very simple Upvote 0
B4X: if emailtxt.text.contains ("@") = false then toastmessageshow("input email",false) end if very simple
eurojam Well-Known Member Licensed User Longtime User May 16, 2017 #8 I think there are more input types available in B4a, see Beginners Guide, Chapter 18.36 Change EditText input modes and https://developer.android.com/reference/android/text/InputType.html Upvote 0
I think there are more input types available in B4a, see Beginners Guide, Chapter 18.36 Change EditText input modes and https://developer.android.com/reference/android/text/InputType.html
D devmobile Active Member Licensed User May 16, 2017 #9 ronell said: B4X: if emailtxt.text.contains ("@") = false then toastmessageshow("input email",false) end if very simple Click to expand... Hey friend please dont remove main goal Us goal is simplify user interaction with app Is it? Upvote 0
ronell said: B4X: if emailtxt.text.contains ("@") = false then toastmessageshow("input email",false) end if very simple Click to expand... Hey friend please dont remove main goal Us goal is simplify user interaction with app Is it?
D devmobile Active Member Licensed User May 16, 2017 #10 eurojam said: I think there are more input types available in B4a, see Beginners Guide, Chapter 18.36 Change EditText input modes and https://developer.android.com/reference/android/text/InputType.html Click to expand... I saw it and try it but not working some types exampke url Upvote 0
eurojam said: I think there are more input types available in B4a, see Beginners Guide, Chapter 18.36 Change EditText input modes and https://developer.android.com/reference/android/text/InputType.html Click to expand... I saw it and try it but not working some types exampke url
R ronell Well-Known Member Licensed User Longtime User May 16, 2017 #11 you want the an edittext to force input email, url etc? Upvote 0
D devmobile Active Member Licensed User May 16, 2017 #12 ronell said: you want the an edittext to force input email, url etc? Click to expand... Yes Example PHONE inputtype Upvote 0
ronell said: you want the an edittext to force input email, url etc? Click to expand... Yes Example PHONE inputtype
R ronell Well-Known Member Licensed User Longtime User May 16, 2017 #13 devmobile said: Yes Example PHONE inputtype Click to expand... there is input type: PHONE in designer Upvote 0
devmobile said: Yes Example PHONE inputtype Click to expand... there is input type: PHONE in designer
D devmobile Active Member Licensed User May 16, 2017 #14 ronell said: there is input type: PHONE in designer Click to expand... :||| I knew that exist PHONE type in designer I said i need EMAIL type in designer or with code Upvote 0
ronell said: there is input type: PHONE in designer Click to expand... :||| I knew that exist PHONE type in designer I said i need EMAIL type in designer or with code
R ronell Well-Known Member Licensed User Longtime User May 16, 2017 #15 B4X: EditText1.InputType = Bit.Or(EditText1.INPUT_TYPE_TEXT, 0x00000020) Upvote 0