0
我想在我的android webview中使用捏時增加/減少字體。Android WebView自定義捏動作
默認操作使顯示變大/變小,但不是字體。
public void increaseFont(Webview webview) {
int font = wv.getSettings().getTextZoom();
int newFont = font + 15;
wwbview.getSettings().setTextZoom(newFont);
}
但是,我不知道如何實施它作爲捏行動。
tv1 = (WebView) findViewById(R.id.tv1);
tv1.loadUrl("file:///android_res/raw/ht_1193");
tv1.getSettings().setDisplayZoomControls(false);
tv1.getSettings().setBuiltInZoomControls(true);
謝謝但如何改變默認的捏動作?它仍然行爲相同,這段代碼只是改變字體大小...... – Benny