Android WebView链接触摸区

Android WebView链接触摸区,android,webview,hyperlink,Android,Webview,Hyperlink,我有一个包含一些可点击链接的网络视图。 有没有办法增加这些链接的触摸区域,因为即使它们在视觉上足够大,也很难点击并打开它们。利用缩放属性 WebView yourwebview = (WebView) findViewByID(R.Layout.id.webview1); yourwebview.getSettings().setBuiltInZoomControls(true); yourwebview.getSettings().setDisplayZoomControls(false);

我有一个包含一些可点击链接的网络视图。 有没有办法增加这些链接的触摸区域,因为即使它们在视觉上足够大,也很难点击并打开它们。

利用缩放属性

WebView yourwebview = (WebView) findViewByID(R.Layout.id.webview1);
yourwebview.getSettings().setBuiltInZoomControls(true);
yourwebview.getSettings().setDisplayZoomControls(false);