summaryrefslogtreecommitdiff
path: root/org.fox.ttrss
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-06-05 15:51:50 +0300
committerAndrew Dolgov <[email protected]>2015-06-05 15:51:50 +0300
commit9523151a2570a5fc1bc9369f65a8d771e0c1fa36 (patch)
tree192d4fc7247c40246479c2a6ea1325552f8f0fcc /org.fox.ttrss
parente5159ab48a6793d06a62b62f30fd2f0dc2d5c69a (diff)
article fragment: simplify things a bit
Diffstat (limited to 'org.fox.ttrss')
-rwxr-xr-xorg.fox.ttrss/src/main/java/org/fox/ttrss/ArticleFragment.java249
1 files changed, 110 insertions, 139 deletions
diff --git a/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticleFragment.java b/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticleFragment.java
index 05ee4896..b4b753f8 100755
--- a/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticleFragment.java
+++ b/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticleFragment.java
@@ -221,18 +221,6 @@ public class ArticleFragment extends Fragment {
if (title != null) {
- /* if (m_prefs.getBoolean("enable_condensed_fonts", false)) {
- Typeface tf = TypefaceCache.get(m_activity, "sans-serif-condensed", Typeface.NORMAL);
-
- if (tf != null && !tf.equals(title.getTypeface())) {
- title.setTypeface(tf);
- }
-
- title.setTextSize(TypedValue.COMPLEX_UNIT_SP, Math.min(21, articleFontSize + 5));
- } else {
- title.setTextSize(TypedValue.COMPLEX_UNIT_SP, Math.min(21, articleFontSize + 3));
- } */
-
title.setTextSize(TypedValue.COMPLEX_UNIT_SP, Math.min(21, articleFontSize + 3));
String titleStr;
@@ -372,159 +360,142 @@ public class ArticleFragment extends Fragment {
}
}
- if (m_article != null) {
+ m_web.setOnLongClickListener(new View.OnLongClickListener() {
+ @Override
+ public boolean onLongClick(View v) {
+ HitTestResult result = ((WebView)v).getHitTestResult();
+
+ if (result != null && (result.getType() == HitTestResult.IMAGE_TYPE || result.getType() == HitTestResult.SRC_IMAGE_ANCHOR_TYPE)) {
+ registerForContextMenu(m_web);
+ m_activity.openContextMenu(m_web);
+ unregisterForContextMenu(m_web);
+ return true;
+ } else {
+ return false;
+ }
+ }
+ });
- new Handler().postDelayed(new Runnable() {
- @Override
- public void run() {
-
- if (m_web != null) {
-
- m_web.setOnLongClickListener(new View.OnLongClickListener() {
- @Override
- public boolean onLongClick(View v) {
- HitTestResult result = ((WebView)v).getHitTestResult();
-
- if (result != null && (result.getType() == HitTestResult.IMAGE_TYPE || result.getType() == HitTestResult.SRC_IMAGE_ANCHOR_TYPE)) {
- registerForContextMenu(m_web);
- m_activity.openContextMenu(m_web);
- unregisterForContextMenu(m_web);
- return true;
- } else {
- return false;
- }
- }
- });
-
- boolean acceleratedWebview = true;
-
- // prevent flicker in ics
- if (!m_prefs.getBoolean("webview_hardware_accel", true)) {
- if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.HONEYCOMB) {
- m_web.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
- acceleratedWebview = false;
- }
- }
+ boolean acceleratedWebview = true;
- String content;
- String cssOverride = "";
+ // prevent flicker in ics
+ if (!m_prefs.getBoolean("webview_hardware_accel", true)) {
+ if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.HONEYCOMB) {
+ m_web.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
+ acceleratedWebview = false;
+ }
+ }
- WebSettings ws = m_web.getSettings();
- ws.setSupportZoom(false);
+ String cssOverride = "";
- TypedValue tvBackground = new TypedValue();
- getActivity().getTheme().resolveAttribute(R.attr.articleBackground, tvBackground, true);
+ WebSettings ws = m_web.getSettings();
+ ws.setSupportZoom(false);
- String backgroundHexColor = String.format("#%06X", (0xFFFFFF & tvBackground.data));
+ TypedValue tvBackground = new TypedValue();
+ getActivity().getTheme().resolveAttribute(R.attr.articleBackground, tvBackground, true);
- cssOverride = "body { background : "+ backgroundHexColor+"; }";
+ String backgroundHexColor = String.format("#%06X", (0xFFFFFF & tvBackground.data));
- TypedValue tvTextColor = new TypedValue();
- getActivity().getTheme().resolveAttribute(R.attr.articleTextColor, tvTextColor, true);
+ cssOverride = "body { background : "+ backgroundHexColor+"; }";
- String textColor = String.format("#%06X", (0xFFFFFF & tvTextColor.data));
+ TypedValue tvTextColor = new TypedValue();
+ getActivity().getTheme().resolveAttribute(R.attr.articleTextColor, tvTextColor, true);
- cssOverride += "body { color : "+textColor+"; }";
+ String textColor = String.format("#%06X", (0xFFFFFF & tvTextColor.data));
- TypedValue tvLinkColor = new TypedValue();
- getActivity().getTheme().resolveAttribute(R.attr.linkColor, tvLinkColor, true);
+ cssOverride += "body { color : "+textColor+"; }";
- String linkHexColor = String.format("#%06X", (0xFFFFFF & tvLinkColor.data));
- cssOverride += " a:link {color: "+linkHexColor+";} a:visited { color: "+linkHexColor+";}";
+ TypedValue tvLinkColor = new TypedValue();
+ getActivity().getTheme().resolveAttribute(R.attr.linkColor, tvLinkColor, true);
- String articleContent = m_article.content != null ? m_article.content : "";
+ String linkHexColor = String.format("#%06X", (0xFFFFFF & tvLinkColor.data));
+ cssOverride += " a:link {color: "+linkHexColor+";} a:visited { color: "+linkHexColor+";}";
- if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
- ws.setJavaScriptEnabled(true);
+ String articleContent = m_article.content != null ? m_article.content : "";
- m_chromeClient = new FSVideoChromeClient(view);
- m_web.setWebChromeClient(m_chromeClient);
- }
+ if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
+ ws.setJavaScriptEnabled(true);
- if (m_prefs.getBoolean("justify_article_text", true)) {
- cssOverride += "body { text-align : justify; } ";
- }
+ m_chromeClient = new FSVideoChromeClient(view);
+ m_web.setWebChromeClient(m_chromeClient);
+ }
- ws.setDefaultFontSize(articleFontSize);
-
- content =
- "<html>" +
- "<head>" +
- "<meta content=\"text/html; charset=utf-8\" http-equiv=\"content-type\">" +
- "<meta name=\"viewport\" content=\"width=device-width, user-scalable=no\" />" +
- "<style type=\"text/css\">" +
- "body { padding : 0px; margin : 0px; line-height : 130%; }" +
- "img, video, iframe { max-width : 100%; width : auto; height : auto; }" +
- " table { width : 100%; }" +
- cssOverride +
- "</style>" +
- "</head>" +
- "<body>" + articleContent;
-
- if (m_article.attachments != null && m_article.attachments.size() != 0) {
- String flatContent = articleContent.replaceAll("[\r\n]", "");
- boolean hasImages = flatContent.matches(".*?<img[^>+].*?");
-
- for (Attachment a : m_article.attachments) {
- if (a.content_type != null && a.content_url != null) {
- try {
- if (a.content_type.indexOf("image") != -1 &&
- (!hasImages || m_article.always_display_attachments)) {
-
- URL url = new URL(a.content_url.trim());
- String strUrl = url.toString().trim();
-
- content += "<p><img src=\"" + strUrl.replace("\"", "\\\"") + "\"></p>";
- }
-
- } catch (MalformedURLException e) {
- //
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- }
- }
+ if (m_prefs.getBoolean("justify_article_text", true)) {
+ cssOverride += "body { text-align : justify; } ";
+ }
+
+ ws.setDefaultFontSize(articleFontSize);
+
+ StringBuilder content = new StringBuilder("<html>" +
+ "<head>" +
+ "<meta content=\"text/html; charset=utf-8\" http-equiv=\"content-type\">" +
+ "<meta name=\"viewport\" content=\"width=device-width, user-scalable=no\" />" +
+ "<style type=\"text/css\">" +
+ "body { padding : 0px; margin : 0px; line-height : 130%; }" +
+ "img, video, iframe { max-width : 100%; width : auto; height : auto; }" +
+ " table { width : 100%; }" +
+ cssOverride +
+ "</style>" +
+ "</head>" +
+ "<body>");
+
+ content.append(articleContent);
+
+ if (m_article.attachments != null && m_article.attachments.size() != 0) {
+ String flatContent = articleContent.replaceAll("[\r\n]", "");
+ boolean hasImages = flatContent.matches(".*?<img[^>+].*?");
+
+ for (Attachment a : m_article.attachments) {
+ if (a.content_type != null && a.content_url != null) {
+ try {
+ if (a.content_type.indexOf("image") != -1 &&
+ (!hasImages || m_article.always_display_attachments)) {
- content += "</body></html>";
+ URL url = new URL(a.content_url.trim());
+ String strUrl = url.toString().trim();
- try {
- String baseUrl = null;
-
- try {
- URL url = new URL(m_article.link);
- baseUrl = url.getProtocol() + "://" + url.getHost();
- } catch (MalformedURLException e) {
- //
- }
-
- if (savedInstanceState == null || !acceleratedWebview) {
- m_web.loadDataWithBaseURL(baseUrl, content, "text/html", "utf-8", null);
- } else {
- WebBackForwardList rc = m_web.restoreState(savedInstanceState);
-
- if (rc == null) {
- // restore failed...
- m_web.loadDataWithBaseURL(baseUrl, content, "text/html", "utf-8", null);
- }
- }
-
- } catch (RuntimeException e) {
- e.printStackTrace();
+ content.append("<p><img src=\"" + strUrl.replace("\"", "\\\"") + "\"></p>");
}
-// if (m_activity.isSmallScreen())
-// web.setOnTouchListener(m_gestureListener);
-
- m_web.setVisibility(View.VISIBLE);
+ } catch (MalformedURLException e) {
+ //
+ } catch (Exception e) {
+ e.printStackTrace();
}
+ }
+ }
+ }
+ content.append("</body></html>");
+
+ try {
+ String baseUrl = null;
+
+ try {
+ URL url = new URL(m_article.link);
+ baseUrl = url.getProtocol() + "://" + url.getHost();
+ } catch (MalformedURLException e) {
+ //
+ }
+
+ if (savedInstanceState == null || !acceleratedWebview) {
+ m_web.loadDataWithBaseURL(baseUrl, content.toString(), "text/html", "utf-8", null);
+ } else {
+ WebBackForwardList rc = m_web.restoreState(savedInstanceState);
+
+ if (rc == null) {
+ // restore failed...
+ m_web.loadDataWithBaseURL(baseUrl, content.toString(), "text/html", "utf-8", null);
}
- }, 100);
+ }
+ } catch (RuntimeException e) {
+ e.printStackTrace();
}
- return view;
+ m_web.setVisibility(View.VISIBLE);
+
+ return view;
}
@Override