ズームボタンを外すことはできますか?WebView をズームすると表示されます。これらのボタンなしでズーム コントロールが必要です。私はアンドロイド2.3を使用しています。
以下のコードを使用しましたが、
WebView webview = (WebView) findViewById(R.id.webview);
webview.getSettings().setBuiltInZoomControls(false);
webview.getSettings().setJavaScriptEnabled(true);
FrameLayout mContentView = (FrameLayout) getWindow().
getDecorView().findViewById(android.R.id.content);
final View zoom = webview.getZoomControls();
mContentView.addView(zoom, ZOOM_PARAMS);
zoom.setVisibility(View.GONE);