Cebuvi Active Member Licensed User Longtime User Mar 3, 2016 #1 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
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
Erel B4X founder Staff member Licensed User Longtime User Mar 3, 2016 #2 B4X: clv.AsView.Height = 100%y - NewHeight Upvote 0
Cebuvi Active Member Licensed User Longtime User Mar 3, 2016 #3 Thanks Erel, now all work ok. Cesar Upvote 0