Well, on the honeycombs I have some functions that determine the screen size. This is sometimes used to dynamically create some interface elements. But the problem is that it includes a bottom panel with android buttons, which subtracts from your available screen size.
The android function Displaycan return the correct function (for example, the 1280x800 display will display 1280x740 as a display, it is a display that does not include the bottom buttons of the android), but the javascript function in the webview will only determine this actual size, so 1280x800 gets 1280x800, which is wrong. because the bottom panel is there.
How can I get the size of the bottom panel without hard coding, I can at least subtract it from the wrong integers of the screen size.
source
share