Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know of a way to Display URL's in webview like this

enter image description here

But here I am geting Like this here no focus and no click option not working any thing give me some sugessions please..

enter image description here

this code useing display data in webview

 webview.getSettings().setJavaScriptEnabled(true);
 webview.loadDataWithBaseURL(null, string, "text/html", "utf-8", null);
share|improve this question
The text which is shown in the webview is of String format?? – Pallavi Jan 29 at 6:04

4 Answers

up vote 1 down vote accepted

String str="Your text goes here... 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("&lt;", "<").replace("&gt;", ">");

mWebView.loadDataWithBaseURL("about:blank", myFullString ,"text/html", "utf-8", null);
share|improve this answer
@NagarjunaReddy.P i have written link in ` ` so that you get to copy the exact code as it is... and then you can check for yourself if the code is working or not... – Pallavi Jan 29 at 6:29
cool! then don't be shy to accept the answer :) – Pallavi Jan 29 at 6:32
here My string is html format how to display data in webview.. – NagarjunaReddy Jan 29 at 7:09
did you try replacing the content of str variable with your data? – Pallavi Jan 29 at 7:10
in place of image url image not display only url display... – NagarjunaReddy Jan 29 at 7:12
show 1 more comment

Sample code:

Java:

 TextView t2 = (TextView) findViewById(R.id.text2);
 t2.setMovementMethod(LinkMovementMethod.getInstance());

android:

<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>

Android WebView: Change Auto-Link Display for webview

share|improve this answer
i want webview not textview.... – NagarjunaReddy Jan 29 at 5:59
I added link into my answer – Rachel Gallen Jan 29 at 6:01

Try this.....

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");

If you are loading a string of html texts into webView. Then you can use

mWebView.loadData(header+data, "text/html", "UTF-8");

If you have a html file. Then you can use

webView.loadUrl("file:///android_asset/mypage.html"):

Note: Dont forget to put your html file in your assets folder.

Cheers!!! :D

share|improve this answer

Use 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");
share|improve this answer
how to use Linkify.in webview... – NagarjunaReddy Jan 29 at 6:07
The code is there in the post. – Rajesh Jan 29 at 6:08
In that String Value i have image url in that url not display in image in webview.... – NagarjunaReddy Jan 29 at 9:00
A WebView will display only HTML content. Simply having an image URL will not show the image. You have to build an HTML with img tags. This, however, is not what your original question is. – Rajesh Jan 30 at 6:35
i am set in image url in html format that html string pass to SpannableString(string) here paramater String is html String in this except image url all are working. – NagarjunaReddy Jan 30 at 6:44
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.