缩放按钮可以通过执行您自己的自定义 Webview 并使用反射来在缩放控件中建立缩放控件,使其在 11 (Honeycomb) 以下的 API 中隐形, 从而可以删除缩放按钮。 该代码与所有 API 上端和机器人 Nougat 一样有效 ;
public class CustomWebView extends WebView{
private ZoomButtonsController zoom_controll = null;
public CustomWebView(Context context) {
this(context, null);
}
public CustomWebView(Context context, AttributeSet attrs) {
this(context, attrs, android.R.attr.webViewStyle);
}
public CustomWebView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
initWebSettings();
}
@SuppressLint("NewApi")
private void initWebSettings() {
WebSettings webSettings = getSettings();
webSettings.setSupportZoom(true);
webSettings.setBuiltInZoomControls(true);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
webSettings.setAllowContentAccess(true);
webSettings.setDisplayZoomControls(false);
} else {
try {
Class webview = Class.forName("android.webkit.WebView");
Method method = webview.getMethod("getZoomButtonsController");
zoom_controll = (ZoomButtonsController) method.invoke(this, null);
} catch (Exception e) {
e.printStackTrace();
}
}
}
@Override
public boolean onTouchEvent(MotionEvent event) {
if(zoom_controll != null)
zoom_controll.getZoomControls().setVisibility(View.GONE);
return super.onTouchEvent(event);
}
}