Following issue:
When the soft-keyboard is open and I rotate, the activity gets reloaded but the height (e.g. 100%y) is incorrect (still reserving place for the soft-keyboard plus about 1 cm?)
Not only during activity_create event, but also during the runtime (or until next rotation)
While in this state, the new height value in IME_HeightChanged events appears to be correct, as far as I can assume from scrolling the resized listview (the listview appears to be clipped around this incorrect 100%y, so I guess the real 'activity' height is incorrect)
SetActivityAttribute(main, android:windowSoftInputMode, adjustResize|stateHidden)
is set in the manifest file.
IME.Initialize("IME")
IME.AddHeightChangedEvent
is the first code in activity_create
IME.HideKeyboard
within activity_pause does not help either.
The code handling IME_HeightChanged only affects a single control, so not the reason for this behavior.
Anyone any idea?
When the soft-keyboard is open and I rotate, the activity gets reloaded but the height (e.g. 100%y) is incorrect (still reserving place for the soft-keyboard plus about 1 cm?)
Not only during activity_create event, but also during the runtime (or until next rotation)
While in this state, the new height value in IME_HeightChanged events appears to be correct, as far as I can assume from scrolling the resized listview (the listview appears to be clipped around this incorrect 100%y, so I guess the real 'activity' height is incorrect)
SetActivityAttribute(main, android:windowSoftInputMode, adjustResize|stateHidden)
is set in the manifest file.
IME.Initialize("IME")
IME.AddHeightChangedEvent
is the first code in activity_create
IME.HideKeyboard
within activity_pause does not help either.
The code handling IME_HeightChanged only affects a single control, so not the reason for this behavior.
Anyone any idea?