11

我正在使用 WebView 在我的应用程序中显示网站,我想知道是否可以更改默认为蓝色和带下划线的链接颜色和样式?

我搜索了它,但有关于删除链接周围突出显示的所有问题和解决方案,与链接本身无关。我只是想知道是否有一些像 TextView 的android:textColorLink一样简单的解决方案,还是我需要以某种方式更改网站正文?

谢谢!

4

2 回答 2

20

好的,我设法做到了,并想为未来的访客分享我的方式。

首先,我创建了一个具有所需样式的 css 文件,名为style.css,保存在 assets 文件夹下

a {color:purple; text-decoration:none}

然后,在我加载页面的代码中,页面content的实际html内容在哪里

String htmlBody = "<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\" />" + content;
mWebView.loadDataWithBaseURL("file:///android_asset/", htmlBody, "text/html", "utf-8",
            null);

而已!希望它可以帮助某人。

于 2013-09-22T23:02:33.860 回答
3

以下是如何添加 html 链接和自定义它们的示例:

WebSettings webViewSettings = webView.getSettings();
webViewSettings.setDefaultFontSize(AppSettings.defaultFontSize);
webView.setBackgroundColor(Color.TRANSPARENT);

webView.loadDataWithBaseURL("file:///android_asset",  Util.replaceLinkTags(myText), "text/html", "utf-8", null);
webView.setWebViewClient(new WebViewClient() {
    @Override
    public boolean shouldOverrideUrlLoading(WebView view, String url) {
        if (url.startsWith("file")) {
            Intent intent = new Intent(MyActivity.this, MyActivity.class);
            intent.putExtra("word", Uri.parse(url).getLastPathSegment());
            startActivity(intent);
            return true;
        } else
            return false;
    }
});

public static String replaceLinkTags(String text) {
    text = "<html><head>"
            + "<style type=\"text/css\">body{color:" + "#424242" + ";} a{color:#00B8D4; text-decoration:none; font-weight:bold;}" 
            + "</style></head>"
            + "<body>" + text + "</body></html>";

    String str;
    while ((text.indexOf("\u0082") > 0)) {
        if ((text.indexOf("\u0082") > 0) && (text.indexOf("\u0083") > 0)) {
            str = text.substring(text.indexOf("\u0082") + 1, text.indexOf("\u0083"));
            text = text.replaceAll("\u0082" + str + "\u0083", "<a href=\"" + str + "\">" + str + "</a>");
        }
    }    
    return text;
}
于 2018-04-17T00:24:11.853 回答