tt-rss-android/src/org/fox/ttrss/ArticleFragment.java

274 lines
7.9 KiB
Java
Raw Normal View History

2011-09-09 11:58:11 +00:00
package org.fox.ttrss;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.util.Date;
2011-12-07 12:25:50 +00:00
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
2011-11-28 09:45:19 +00:00
2011-09-09 11:58:11 +00:00
import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.support.v4.app.Fragment;
import android.text.Html;
import android.text.method.LinkMovementMethod;
import android.util.Log;
import android.util.TypedValue;
2012-03-12 08:51:57 +00:00
import android.view.ContextMenu;
2011-09-09 11:58:11 +00:00
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
2012-03-12 08:51:57 +00:00
import android.view.ContextMenu.ContextMenuInfo;
import android.webkit.WebSettings;
2011-09-09 16:36:09 +00:00
import android.webkit.WebView;
import android.widget.TextView;
2012-03-12 08:51:57 +00:00
import android.widget.AdapterView.AdapterContextMenuInfo;
2011-09-09 11:58:11 +00:00
public class ArticleFragment extends Fragment {
@SuppressWarnings("unused")
2011-09-09 16:36:09 +00:00
private final String TAG = this.getClass().getSimpleName();
private SharedPreferences m_prefs;
private Article m_article;
private OnlineServices m_onlineServices;
//private Article m_nextArticle;
//private Article m_prevArticle;
public ArticleFragment() {
super();
}
public ArticleFragment(Article article) {
super();
m_article = article;
}
private View.OnTouchListener m_gestureListener;
2011-09-09 11:58:11 +00:00
2012-03-12 08:51:57 +00:00
@Override
public void onCreateContextMenu(ContextMenu menu, View v,
ContextMenuInfo menuInfo) {
getActivity().getMenuInflater().inflate(R.menu.article_link_context_menu, menu);
menu.setHeaderTitle(m_article.title);
super.onCreateContextMenu(menu, v, menuInfo);
}
2011-09-09 11:58:11 +00:00
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
if (savedInstanceState != null) {
m_article = savedInstanceState.getParcelable("article");
2011-09-09 11:58:11 +00:00
}
View view = inflater.inflate(R.layout.article_fragment, container, false);
Activity activity = (Activity)getActivity();
2011-11-28 09:45:19 +00:00
if (activity != null) {
int orientation = activity.getWindowManager().getDefaultDisplay().getOrientation();
if (!m_onlineServices.isSmallScreen()) {
2011-11-28 09:45:19 +00:00
if (orientation % 2 == 0) {
view.findViewById(R.id.splitter_horizontal).setVisibility(View.GONE);
} else {
view.findViewById(R.id.splitter_vertical).setVisibility(View.GONE);
}
} else {
view.findViewById(R.id.splitter_vertical).setVisibility(View.GONE);
view.findViewById(R.id.splitter_horizontal).setVisibility(View.GONE);
}
} else {
view.findViewById(R.id.splitter_horizontal).setVisibility(View.GONE);
}
2011-09-09 16:36:09 +00:00
if (m_article != null) {
TextView title = (TextView)view.findViewById(R.id.title);
if (title != null) {
2011-11-30 09:02:26 +00:00
String titleStr;
if (m_article.title.length() > 200)
titleStr = m_article.title.substring(0, 200) + "...";
else
titleStr = m_article.title;
title.setMovementMethod(LinkMovementMethod.getInstance());
title.setText(Html.fromHtml("<a href=\""+m_article.link.trim().replace("\"", "\\\"")+"\">" + titleStr + "</a>"));
2012-03-12 08:51:57 +00:00
registerForContextMenu(title);
}
WebView web = (WebView)view.findViewById(R.id.content);
if (web != null) {
String content;
2011-11-29 04:03:38 +00:00
String cssOverride = "";
WebSettings ws = web.getSettings();
ws.setSupportZoom(true);
ws.setBuiltInZoomControls(true);
TypedValue tv = new TypedValue();
getActivity().getTheme().resolveAttribute(R.attr.linkColor, tv, true);
// prevent flicker in ics
if (android.os.Build.VERSION.SDK_INT >= 11) {
web.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
}
if (m_prefs.getString("theme", "THEME_DARK").equals("THEME_DARK")) {
cssOverride = "body { background : transparent; color : #e0e0e0}";
//view.setBackgroundColor(android.R.color.black);
web.setBackgroundColor(android.R.color.transparent);
} else {
cssOverride = "";
}
2011-12-07 12:25:50 +00:00
String hexColor = String.format("#%06X", (0xFFFFFF & tv.data));
cssOverride += " a:link {color: "+hexColor+";} a:visited { color: "+hexColor+";}";
String articleContent = m_article.content != null ? m_article.content : "";
2011-12-07 12:25:50 +00:00
Document doc = Jsoup.parse(articleContent);
if (doc != null) {
// thanks webview for crashing on <video> tag
Elements videos = doc.select("video");
for (Element video : videos)
video.remove();
articleContent = doc.toString();
}
2012-02-25 11:05:37 +00:00
switch (Integer.parseInt(m_prefs.getString("font_size", "0"))) {
case 0:
cssOverride += "body { text-align : justify; font-size : 14px; } ";
break;
case 1:
cssOverride += "body { text-align : justify; font-size : 18px; } ";
break;
case 2:
cssOverride += "body { text-align : justify; font-size : 21px; } ";
break;
}
2011-11-29 04:03:38 +00:00
content =
"<html>" +
"<head>" +
"<meta content=\"text/html; charset=utf-8\" http-equiv=\"content-type\">" +
//"<meta name=\"viewport\" content=\"target-densitydpi=device-dpi\" />" +
2011-11-29 04:03:38 +00:00
"<style type=\"text/css\">" +
cssOverride +
"div.attachments { font-size : 70%; margin-top : 1em; }" +
2011-12-01 09:05:21 +00:00
"img { max-width : 98%; height : auto; }" +
2011-11-29 04:03:38 +00:00
"</style>" +
"</head>" +
"<body>" + articleContent;
if (m_article.attachments != null && m_article.attachments.size() != 0) {
String attachments = "<div class=\"attachments\">" + getString(R.string.attachments) + " ";
for (Attachment a : m_article.attachments) {
if (a.content_type != null && a.content_url != null) {
try {
URL url = new URL(a.content_url.trim());
String atitle = (a.title != null && a.title.length() > 0) ? a.title : new File(url.getFile()).getName();
if (a.content_type.indexOf("image") != -1) {
content += "<br/><img src=\"" + url.toString().trim().replace("\"", "\\\"") + "\">";
}
attachments += "<a href=\""+url.toString().trim().replace("\"", "\\\"") + "\">" + atitle + "</a>, ";
} catch (MalformedURLException e) {
//
} catch (Exception e) {
e.printStackTrace();
}
}
}
content += attachments.replaceAll(", $", "");
content += "</div>";
}
content += "</body></html>";
2011-11-29 04:03:38 +00:00
2011-12-07 12:13:58 +00:00
try {
web.loadDataWithBaseURL(null, content, "text/html", "utf-8", null);
} catch (RuntimeException e) {
e.printStackTrace();
}
if (m_onlineServices.isSmallScreen())
web.setOnTouchListener(m_gestureListener);
}
2011-11-24 12:08:02 +00:00
TextView dv = (TextView)view.findViewById(R.id.date);
if (dv != null) {
Date d = new Date(m_article.updated * 1000L);
SimpleDateFormat df = new SimpleDateFormat("EEE, dd MMM yyyy, HH:mm");
dv.setText(df.format(d));
}
2011-11-28 09:45:19 +00:00
TextView tagv = (TextView)view.findViewById(R.id.tags);
if (tagv != null) {
if (m_article.tags != null) {
String tagsStr = "";
for (String tag : m_article.tags)
tagsStr += tag + ", ";
tagsStr = tagsStr.replaceAll(", $", "");
tagv.setText(tagsStr);
} else {
tagv.setVisibility(View.GONE);
}
}
}
2011-09-09 11:58:11 +00:00
return view;
}
@Override
public void onDestroy() {
2011-09-11 09:04:48 +00:00
super.onDestroy();
2011-09-09 11:58:11 +00:00
}
@Override
2011-09-09 16:36:09 +00:00
public void onSaveInstanceState (Bundle out) {
2011-09-09 11:58:11 +00:00
super.onSaveInstanceState(out);
2011-12-07 12:25:50 +00:00
out.putParcelable("article", m_article);
2011-09-09 11:58:11 +00:00
}
2011-09-09 11:58:11 +00:00
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
m_prefs = PreferenceManager.getDefaultSharedPreferences(getActivity().getApplicationContext());
m_onlineServices = (OnlineServices)activity;
//m_article = m_onlineServices.getSelectedArticle();
2011-09-09 11:58:11 +00:00
}
2011-09-09 11:58:11 +00:00
}