article webview: set base url to properly display protocol relative

images
This commit is contained in:
Andrew Dolgov 2013-06-24 13:14:20 +04:00
parent 3c799d68da
commit ccb815ec4a
2 changed files with 4 additions and 4 deletions

View File

@ -286,7 +286,7 @@ public class ArticleFragment extends Fragment implements GestureDetector.OnDoubl
content += "<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p></body></html>";
try {
web.loadDataWithBaseURL(null, content, "text/html", "utf-8", null);
web.loadDataWithBaseURL(m_article.link, content, "text/html", "utf-8", null);
} catch (RuntimeException e) {
e.printStackTrace();
}

View File

@ -133,6 +133,8 @@ public class OfflineArticleFragment extends Fragment implements GestureDetector.
if (m_cursor.isFirst()) {
TextView title = (TextView)view.findViewById(R.id.title);
final String link = m_cursor.getString(m_cursor.getColumnIndex("link"));
if (title != null) {
@ -143,8 +145,6 @@ public class OfflineArticleFragment extends Fragment implements GestureDetector.
else
titleStr = m_cursor.getString(m_cursor.getColumnIndex("title"));
final String link = m_cursor.getString(m_cursor.getColumnIndex("link"));
title.setText(titleStr);
//title.setPaintFlags(title.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
title.setOnClickListener(new OnClickListener() {
@ -281,7 +281,7 @@ public class OfflineArticleFragment extends Fragment implements GestureDetector.
"<body>" + articleContent + "<p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p></body></html>";
try {
web.loadDataWithBaseURL(null, content, "text/html", "utf-8", null);
web.loadDataWithBaseURL(link, content, "text/html", "utf-8", null);
} catch (RuntimeException e) {
e.printStackTrace();
}