Android is odd

pull/194/merge
M66B 3 years ago
parent 0c8206ddc9
commit c5622c8a86

@ -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) {

Loading…
Cancel
Save