cordova-plugin-screensize icon indicating copy to clipboard operation
cordova-plugin-screensize copied to clipboard

please add support for innerHeight/innerWidth

Open brtn86 opened this issue 9 years ago • 1 comments

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.

brtn86 avatar Jan 06 '16 11:01 brtn86

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);

halman avatar Aug 24 '18 07:08 halman