B4A Question [SOLVED] How to "dim" the soft buttons? - Erel (first post)    Jan 29, 2015 See the third search result: https://www.b4x./?query=dim+soft+button&page=1&prefix=0 B4A Tutorial Handle the soft keyboard with the IME library - Erel    Aug 27, 2024   (27 reactions) You can also use it to validate the input before jumping to the next view by pressing on the Next button (note that the user will still be able to manually move to the next field). You can use the Sender keyword to get the EditText that raised the event. For example: Sub IME_HandleAction As Boolea B4A Question Solved: disable soft keyboard microphone and Suggestions? - Erel (first post)    Feb 25, 2018   (2 reactions) The keyboard is an external application. Your program cannot control it. You can try this as a hint to the keyboard: Dim jo As JavaObject = EditText1 jo.RunMethod("setPrivateImeOptions", Array("nm,com.google.android.inputmethod.latin.noMicrophoneKey")) https://stackoverflow.-speech-to-text-butto B4i Question iOS soft keyboard character and BACKSPACE, ENTER detection - Erel (first post)    Sep 25, 2024   (1 reaction) This seems to work: Private Sub TextView1_TextChanged (OldText As String, NewText As String) If NewText = "~" Then Return If NewText = "" Then Log("backspace") Else Dim c As String = NewText.SubString(NewText.Length - 1) Log($"new char: ${c}, codepoint: ${Asc(c)} B4i Question iOS soft keyboard - Can I determine the keyboard type? - Erel (first post)    Sep 25, 2024 163 is the Unicode code point of this character. It has nothing to do with encoding. If you want to handle more complicated characters such as emojies then the best encoding is UTF-32LE. And you can get the code point value with: Dim cp As Int = BytesToInt("£".GetBytes("UTF-32LE"), 0) Private Su B4A Question ShowKeyboard does not work - please help - aedwall    Apr 10, 2019   (1 reaction) I have been trying everything I can think of to make my txtCity EditText control open the soft keyboard automatically. Can someone please help me? Dim IME1 As IME Dim txtCity As EditText IME1.Initialize("IME") txtCity.InputType = txtCity.INPUT_TYPE_TEXT txtCity.RequestFocus IM B4A Question Problem creating my own class - cds-soft    Jan 13, 2015 'These variables can be accessed from all modules. Dim MOFTP As MyOwnFTP End Sub Sub Globals Private btnSend As Button End Sub Sub Activity_Create(FirstTime As Boolean) Activity.LoadLayout("Transfer") MOFTP.Initialize("www.FTP.com",21,"USER","PASS") End Sub Sub btnSend_Click M B4A Code Snippet IME show.. and hide.. KeyBoard Tip - Michaell    Oct 29, 2015   (2 reactions) I might be wrong but it seems that the soft keyboard can only be controled from the activity that first used it. This is how I got it to work: Sub Globals Private EditText1 As EditText Dim IME1 As IME End Sub Sub Activity_Create(FirstTime As Boolean) Activity.LoadLayout("3") Activity. B4A Question Email keyboard won't hide - Rusty    Mar 25, 2019 I have used: Sub btnSendEmail_Click Dim email As Email email.To.Add(Starter.emailAddress) email.Subject = "User Report" email.body = "this is the body" Dim in As Intent = email.GetIntent StartActivity(in) End Sub When the email is created, the soft keyboard does not go aw B4i Tutorial B4i Change Log (versions history) - Erel    Dec 04, 2024   (1 reaction) Allows inline casting from one type to another. Some examples: Dim Buttons As List = Array(Button1, Button2, Button3, Button4, Button5)Dim s As String = Buttons.Get(2).As(B4XView).Text Buttons.Get(2).As(B4XView).Text = "abc" Dim j As String = $"{"data": { "key1": "value1", "complex_key2": { "key": Page: 1   2   3   4   5   6   7   Powered by ColBERT |