有没有人知道如何在网页浏览中显示网址
但是我在这里就像这样没有焦点,也没有任何点击选项没有工作任何事情请给我一些事情请...
此代码使用webview中的显示数据
webview.getSettings().setJavaScriptEnabled(true);
webview.loadDataWithBaseURL(null, string, "text/html", "utf-8", null);
答案 0 :(得分:9)
使用Linkify
。
Spannable sp = new SpannableString(Html.fromHtml(string));
Linkify.addLinks(sp, Linkify.ALL);
final String html = "<body>" + Html.toHtml(sp) + "</body>";
webView.loadData(html, "text/html", "utf-8");
答案 1 :(得分:5)
String str =“你的文字在这里...... http://stackoverflow.com/questions/14576507/android-how-to-display-links-in-webview-like-this
”;
ArrayList<String> myArray = new ArrayList<String>();
myArray.add( "<!DOCTYPE HTML><!-- created HTML PAGE -->");
myArray.add("<head> ");
myArray.add("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" width=100%>");
myArray.add("<meta name=\"viewport\" content=\"width=device-width\">");
myArray.add("<style>");
myArray.add(" p { font-family:Arial, Helvetica, sans-serif;}");
myArray.add("</style>");
myArray.add("</head> ");
myArray.add("<body style=\"background-color: transparent; margin-left:5%; margin-right:5%; \">");
myArray.add("<div >");
Spannable sp = new SpannableString(str);
Linkify.addLinks(sp, Linkify.ALL);
str = Html.toHtml(sp) ;
myArray.add(str);
String myFullString = myArray.toString().replace("[", "").replace("]", "").replace(",", "\n").replace("<", "<").replace(">", ">");
mWebView.loadDataWithBaseURL("about:blank", myFullString ,"text/html", "utf-8", null);
答案 2 :(得分:1)
示例代码:
爪哇:
TextView t2 = (TextView) findViewById(R.id.text2);
t2.setMovementMethod(LinkMovementMethod.getInstance());
机器人:
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="@string/yourid"
android:id="@+id/yourid"
android:layout_below="@+id/yourid" android:layout_centerInParent="true"
android:layout_marginTop="20dp"></TextView>
对于webview
答案 3 :(得分:1)
试试这个:
String header = "< ?xml version=\"1.0\" encoding=\"UTF-8\" ?>";
String data = "< html>< body>< a href='tel:555-5599'>508-776-5510
" "< /body>< /html>";
mWebView.loadData(header+data, "text/html", "UTF-8");
如果要将一串html文本加载到webView中,则可以使用:
mWebView.loadData(header+data, "text/html", "UTF-8");
如果你有一个html文件,那么你可以使用:
webView.loadUrl("file:///android_asset/mypage.html"):
注意:别忘了将您的html文件放在资源文件夹中。
干杯!!! :d
答案 4 :(得分:1)
请添加android:autoLink =&#34; web&#34;在TextView中
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/tv_text"
android:autoLink="web"
android:textColorLink="@color/link"
android:text="click here to load www.fb.com"
android:textColor="@color/black" />