cordova-plugin-screensize
cordova-plugin-screensize copied to clipboard
please add support for innerHeight/innerWidth
Great plugin, very useful! At the moment the returned height includes the title bar (the one with battery, time etc). Is there any chance of you adding support for getting the inner height or the title bar height as a separate value? Cheers.
I had the same issue for Android. I fixed this by replacing getMetrics to getRealMetrics (in ScreenSize.java line 24).
replace: this.cordova.getActivity().getWindowManager().getDefaultDisplay().getMetrics(dm); to: this.cordova.getActivity().getWindowManager().getDefaultDisplay().getRealMetrics(dm);