是否可以删除变焦按钮 ? 它显示了当我缩放的WebView。 我需要放大控制,而这些按钮。 我使用的是Android 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);
getSettings().setBuiltInZoomControls(false);
使用上面的代码行删除变焦按钮。
在API> = 11,你可以使用:
webView.getSettings().setBuiltInZoomControls(true);
webView.getSettings().setDisplayZoomControls(false);
更新:::如果你想在/出不缩放控制然后用下面的代码变焦(抄自这里 )
public class Main extends Activity {
private WebView myWebView;
private static final FrameLayout.LayoutParams ZOOM_PARAMS =
new FrameLayout.LayoutParams(
ViewGroup.LayoutParams.FILL_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT,
Gravity.BOTTOM);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);
myWebView = (WebView)findViewById(R.id.webView);
FrameLayout mContentView = (FrameLayout) getWindow().
getDecorView().findViewById(android.R.id.content);
final View zoom = myWebView.getZoomControls();
mContentView.addView(zoom, ZOOM_PARAMS);
zoom.setVisibility(View.GONE);
myWebView.loadUrl("http://www.almondmendoza.com");
}
}
更改此您AndroidManifest:
android:minSdkVersion="8"
为此:
android:minSdkVersion="11"
比你的Web视图设置使用此:
getSettings().setBuiltInZoomControls(true);
getSettings().setDisplayZoomControls(false);
最后我的答案是,它无法隐藏/删除这些按钮的WebView
中的Android 2.3。
按照此代码。 它会帮助你。
Main.java
WebView wv = (WebView) findViewById(R.id.webview1) ;
WebSettings webSettings = wv.getSettings();
webSettings.setBuiltInZoomControls(false);
wv.loadUrl(url);
如果您希望禁用只缩放控件使用: webView.getSettings().setDisplayZoomControls(false);
只需添加这行:
webSettings.setDisplayZoomControls(false);
变焦按钮可以实现自己的自定义的WebView,并使用反射来获取内置的缩放控件,并使其低于11(蜂窝)API无形被删除。 其代码因而适用于Android的高达牛轧糖的所有API;
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);
}
}
这里是一个解决方案:
if (ev.getAction() == MotionEvent.ACTION_DOWN ||
ev.getAction() == MotionEvent.ACTION_POINTER_DOWN ||
ev.getAction() == MotionEvent.ACTION_POINTER_1_DOWN ||
ev.getAction() == MotionEvent.ACTION_POINTER_2_DOWN ||
ev.getAction() == MotionEvent.ACTION_POINTER_3_DOWN) {
if (multiTouchZoom && !buttonsZoom) {
if (ev.getPointerCount() > 1) {
getSettings().setBuiltInZoomControls(true);
getSettings().setSupportZoom(true);
} else {
getSettings().setBuiltInZoomControls(false);
getSettings().setSupportZoom(false);
}
}
}
if (!multiTouchZoom && buttonsZoom) {
if (getPointerCount(ev) > 1) {
return true;
}
}
在你的情况multiTouchZoom
是真实的, buttonsZoom
是假的。
我在这里找到启用的Android的WebView /禁用变焦 ,它是为我工作。