我有一个包含几个可点击链接的WebView。是否有办法增加这些链接的触点面积,因为可能很难点击和打开链接,即使它们在视觉上足够大。
发布于 2013-10-11 02:19:25
使用zoom属性。
WebView yourwebview = (WebView) findViewByID(R.Layout.id.webview1);
yourwebview.getSettings().setBuiltInZoomControls(true);
yourwebview.getSettings().setDisplayZoomControls(false);https://stackoverflow.com/questions/19309196
复制相似问题