G Georgi Member Nov 25, 2021 #1 Hello, When keyboard is show and move screen up, button on upper side on display is hidden. But sometimes when i hide keyboard, button is shown with half its width. If i "press" button, its update to normal size.? Тested on 4 devices. Last edited: Nov 25, 2021
Hello, When keyboard is show and move screen up, button on upper side on display is hidden. But sometimes when i hide keyboard, button is shown with half its width. If i "press" button, its update to normal size.? Тested on 4 devices.
Erel B4X founder Staff member Licensed User Longtime User Nov 26, 2021 #2 Better to switch to adjustResize and implement the screen resizing yourself: Handle the soft keyboard with the IME library Upvote 0
Better to switch to adjustResize and implement the screen resizing yourself: Handle the soft keyboard with the IME library
G Georgi Member Nov 27, 2021 #3 Erel said: Better to switch to adjustResize and implement the screen resizing yourself: Handle the soft keyboard with the IME library Click to expand... Doesn't work at full screen mode. Need some event, when keyboard is disappear to update button size. Upvote 0
Erel said: Better to switch to adjustResize and implement the screen resizing yourself: Handle the soft keyboard with the IME library Click to expand... Doesn't work at full screen mode. Need some event, when keyboard is disappear to update button size.
G Georgi Member Nov 29, 2021 #4 Interesting, the button loses its size only if it has previously changed background color with ColorDrawable. Upvote 0
Interesting, the button loses its size only if it has previously changed background color with ColorDrawable.
Erel B4X founder Staff member Licensed User Longtime User Nov 29, 2021 #5 This means that you have reused the same drawable object with multiple views. It is a mistake. Upvote 0