Android is odd

This commit is contained in:
M66B 2022-01-14 22:04:22 +01:00
parent 0c8206ddc9
commit c5622c8a86
1 changed files with 8 additions and 0 deletions

View File

@ -331,10 +331,18 @@ public class WebViewEx extends WebView implements DownloadListener, View.OnLongC
}
public boolean isZoomedY() {
/*
DisplayMetrics dm = getResources().getDisplayMetrics();
int ch = Math.round(getContentHeight() * dm.density);
int dp6 = Math.round(6 * dm.density);
return (ch - dp6 > getHeight());
*/
int ytend = computeVerticalScrollExtent();
if (ytend == 0)
return false;
float yscale = computeVerticalScrollRange() / (float) ytend;
return (yscale > 1.01);
}
public static boolean isFeatureSupported(String feature) {