I have written a simple edittext sample to eliminate all complexities. Is there a way to have the keyboard show without the user having to click the edittext? In other words, when the activity starts, have the (appropriate) keyboard already be displayed for the edittext control.
Also, when the keyboard is displayed, is there a way to get the keyboard only and no "text entry" panel just above the keyboard? (I want to have the keyed characters/numbers appear within the edittext control without any intermediate display area.) Thanks,
Below is the very simple example:
'Activity module
Sub Process_Globals
End Sub
Sub Globals
End Sub
Sub Activity_Create(FirstTime As Boolean)
Dim editText1 As EditText
activity.LoadLayout("TextSample")
activity.Initialize("Edit Text Sample")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Also, when the keyboard is displayed, is there a way to get the keyboard only and no "text entry" panel just above the keyboard? (I want to have the keyed characters/numbers appear within the edittext control without any intermediate display area.) Thanks,
Below is the very simple example:
'Activity module
Sub Process_Globals
End Sub
Sub Globals
End Sub
Sub Activity_Create(FirstTime As Boolean)
Dim editText1 As EditText
activity.LoadLayout("TextSample")
activity.Initialize("Edit Text Sample")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub