if I use the code given here to get the total screen size, it is always short in height to the total screen size, as shown in the document specifications for the device. for example, I tried to get the screen size using the code to get the size for the tablet specified as 1280 X 800, and the result from the code: 1216 X 800. so where are 64 pixels missing?
I can guess that it could be a panel at the bottom of the screen that holds the back and home buttons. but that doesn’t sound like that, since content submissions must be the root of all submissions. what's going on here?
the only possible explanation could be this part of the user interface

code used to get screen size
// gets the content view windows width and height size DisplayMetrics displaymetrics = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(displaymetrics); int widthContentView = displaymetrics.widthPixels; int heightContentView = displaymetrics.heightPixels; Toast.makeText(MainActivity.this, "width of content view: " + widthContentView Toast.LENGTH_SHORT).show(); Toast.makeText(MainActivity.this, "height of content view: " + heightContentView, Toast.LENGTH_SHORT).show();
Kevik source share