Blueforcer Well-Known Member Licensed User Longtime User Sep 21, 2021 #1 How to Unfocus the textfiled? B4X: B4XFloatTextField1.Focused=False doesnt work
DonManfred Expert Licensed User Longtime User Sep 21, 2021 #2 Set the focus to another UI element? B4X: B4XFloatTextField2.TextField.RequestFocus Upvote 0
Blueforcer Well-Known Member Licensed User Longtime User Sep 21, 2021 #3 Unfortunally not, i tried UserPanel.RequestFocus But the cursor still blinking in the textfield Upvote 0
Blueforcer Well-Known Member Licensed User Longtime User Sep 21, 2021 #4 Focus on Button doesnt works. i added a invisible Textfiled and set the focus to it. now it works. But the Keyboard still shows up, because it has another focus on textbox. But i think i can fix it. Thanks Upvote 0
Focus on Button doesnt works. i added a invisible Textfiled and set the focus to it. now it works. But the Keyboard still shows up, because it has another focus on textbox. But i think i can fix it. Thanks
Erel B4X founder Staff member Licensed User Longtime User Sep 22, 2021 #5 Buttons never catch the keyboard focus. You can disable and reenable FloatTextField.TextField. You can also hide the keyboard with IME.HideKeyboard. Upvote 0
Buttons never catch the keyboard focus. You can disable and reenable FloatTextField.TextField. You can also hide the keyboard with IME.HideKeyboard.