ime

  1. A

    Android Question HandleAction for B4XFloatTextField

    Does the HandleAction event for the keyboard IME work in case we have a B4XFloatTextField instead of an EditText?
  2. H

    Android Question resize a CustomListView in a Keyboard_HeightChanged event?

    How do i resize a CustomListView on runtime? I found nothing to height of a CustomListView on runtime. My Keyboard_HeightChanged: Sub Keyboard_HeightChanged(NewHeight As Int, OldHeight As Int) 'since CustomListView1.height is not exist. What can i use? Button1.Top = Button1.Top -...
  3. Xela

    Italian Ritornare in "ImmersiveMode" dopo input con IME

    Salve Come si ritorna in "ImmersiveMode" dopo aver utilizzato la tastiera in una "Edittext"? Allego esempio ricavato da: Tutorial originale: Modalità immersiva: nascondi la barra di navigazione (di @@Erel ) Grazie x i Vs suggerimenti
  4. M

    Android Question IME_HeightChanged manifest

    Hi! I have added SetActivityAttribute(Main, android:windowSoftInputMode, adjustResize|stateHidden) to the manifest for using the Ime_heightChanged event but it only works if I add the same line one by one all the activities I need to handle de IME event. Is there a single line for the...
  5. J

    Android Question How to Detect Keyboard Hide Event when Keyboard is Shown and Back Button is Pressed

    Hi All, Just as the title suggests, I want to know how to detect a keyboard hide event when you did not press the DONE or ENTER key but instead tapped the BACK button (or swiped BACK) to hide the keyboard. Specifically, I want to resize a custom list view into the available space once the soft...
  6. S

    Android Question B4XDrawer - IME_HeightChanged not firing

    After adding IME to the B4XDrawer example, all works fine except the IME_HeightChanged sub isn't triggering. I doesn't seem to be firing in other activities that I've added either?
  7. Q

    Android Question IME adjustPan does not always force up the activity when text view get the focus

    Hello, I am working on an application with many activities, all of them in portrait mode. The application is very complex and has a large number of views. Unfortunately, when I work with textboxes, in some cases, the default activity's 'adjustpan' works perfectly, but in other cases, it simply...
  8. aeric

    Android Code Snippet [B4X] XUI Views - Time Dialog

    I want a better dialog for time input so I created this time (picker) dialog using B4X XUI Views and IME library. I think the code has too many lines. Hope someone can simplify or improve it. Note: I haven't tested but I think this code can also work for B4i and B4J. Update: I have tested with...
  9. ivan.tellez

    Android Question How to show the keyboard for a DSFloatLabelEditText? (IME not working)

    I have 2 DSFloatLabelEditText of the design support library. For filling the first one I have a buton to use a BarcodeScaner with some code like this: Sub BarcodeOk(Value As String) DSFloat1.Text = Value DSFloat2.RequestFocus End Sub Sub DSFloat2_FocusChanged (HasFocus As Boolean)...
  10. Alex Guerrero

    Android Question Conflict between IME and NavDrawer

    Hello, When adding IME, a conflict occurs and stops working Sub NavDrawer_NavigationItemSelected, to replicate the failure click on homebutton of the Toolbar (the 3 line menu icon) and select one of the options, Event sub that handles the case if a navigation item is selected. I added the...
  11. JohnC

    Android Question Tabstrip + Scrollview + Keyboard = Height?

    I am using a Tabstrip and a few of the tab's pages have edittext controls on them. So, I am forced to use a scrollview on each tabstrip page that has a edittext on it to make sure they can be visible when the keyboard is shown. So, then I am forced to use IME to detect when the keyboard...
Top