要在Android WebView中禁用縮放,您需要重寫WebView的onTouchEvent
方法并處理縮放事件。以下是一個示例代碼:
import android.content.Context;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class NoZoomWebView extends WebView {
public NoZoomWebView(Context context) {
super(context);
init();
}
public NoZoomWebView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public NoZoomWebView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
private void init() {
setWebViewClient(new WebViewClient());
setOverScrollMode(OVER_SCROLL_NEVER);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
this.setHorizontalScrollBarEnabled(false);
this.setVerticalScrollBarEnabled(false);
}
if (event.getPointerCount() > 1) {
return true;
}
switch (event.getAction()) {
case MotionEvent.ACTION_MOVE:
return true;
case MotionEvent.ACTION_UP:
this.setHorizontalScrollBarEnabled(true);
this.setVerticalScrollBarEnabled(true);
break;
}
return super.onTouchEvent(event);
}
}
然后,在布局文件中使用這個自定義的WebView:
<your.package.name.NoZoomWebView
android:id="@+id/no_zoom_web_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
這樣,您的WebView將禁用縮放功能。