Android Question Custom Listview push up with soft keyboard

Cebuvi

Active Member
Licensed User
Longtime User
Hello,

I have an application with a scrollable custom listview in a panel.

Is possible to push up the panel with the custom list view when I open the soft keyboard?
I'm trying:

B4X:
Sub IME1_HeightChanged(NewHeight As Int, OldHeight As Int)
 
   pnlLista.Height=30%y
End Sub

And I add in manifest:

B4X:
SetActivityAttribute(myactivity, android:windowSoftInputMode, adjustResize|stateHidden)

but does not work. It's not possible scroll the custom list view.

Thanks.

Cesar
 
Top