LWGShane Well-Known Member Licensed User Longtime User Jan 1, 2015 #1 How do I put a return / done button on the keyboard type "NUMBER_PAD"? Android does this automatically. Last edited: Jan 1, 2015
How do I put a return / done button on the keyboard type "NUMBER_PAD"? Android does this automatically.
Erel B4X founder Staff member Licensed User Longtime User Jan 1, 2015 #2 You cannot add such a button to the keyboard. This is how iOS keyboard works. You can catch the Page click event (or any other event) and then call Page.ResignFocus to hide the keyboard. Upvote 0
You cannot add such a button to the keyboard. This is how iOS keyboard works. You can catch the Page click event (or any other event) and then call Page.ResignFocus to hide the keyboard.
LWGShane Well-Known Member Licensed User Longtime User Jan 1, 2015 #3 Erel said: You cannot add such a button to the keyboard. This is how iOS keyboard works. You can catch the Page click event (or any other event) and then call Page.ResignFocus to hide the keyboard. Click to expand... Alright, thanks! Upvote 0
Erel said: You cannot add such a button to the keyboard. This is how iOS keyboard works. You can catch the Page click event (or any other event) and then call Page.ResignFocus to hide the keyboard. Click to expand... Alright, thanks!