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

451 lines
13 KiB
Java
Raw Normal View History

2011-09-09 11:58:11 +00:00
package org.fox.ttrss;
import java.net.MalformedURLException;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.util.Date;
2012-06-19 10:18:00 +00:00
import org.fox.ttrss.types.Article;
import org.fox.ttrss.types.Attachment;
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
import android.annotation.SuppressLint;
2011-09-09 11:58:11 +00:00
import android.app.Activity;
import android.content.Intent;
2011-09-09 11:58:11 +00:00
import android.content.SharedPreferences;
2013-04-16 06:35:48 +00:00
import android.graphics.Typeface;
import android.net.Uri;
2011-09-09 11:58:11 +00:00
import android.os.Bundle;
import android.preference.PreferenceManager;
2012-06-19 14:24:22 +00:00
import android.support.v4.app.Fragment;
import android.text.Html;
import android.util.Log;
import android.util.TypedValue;
2012-03-12 08:51:57 +00:00
import android.view.ContextMenu;
import android.view.ContextMenu.ContextMenuInfo;
2013-01-02 14:38:03 +00:00
import android.view.GestureDetector;
2011-09-09 11:58:11 +00:00
import android.view.LayoutInflater;
import android.view.MenuItem;
import android.view.MotionEvent;
2011-09-09 11:58:11 +00:00
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
2012-09-19 12:01:31 +00:00
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
import android.webkit.WebSettings.LayoutAlgorithm;
2011-09-09 16:36:09 +00:00
import android.webkit.WebView;
import android.webkit.WebView.HitTestResult;
2011-09-09 16:36:09 +00:00
import android.widget.TextView;
import android.widget.AdapterView.AdapterContextMenuInfo;
2011-09-09 11:58:11 +00:00
public class ArticleFragment extends Fragment implements GestureDetector.OnDoubleTapListener {
2011-09-09 16:36:09 +00:00
private final String TAG = this.getClass().getSimpleName();
private SharedPreferences m_prefs;
private Article m_article;
2012-09-17 12:28:32 +00:00
private OnlineActivity m_activity;
private GestureDetector m_detector;
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) {
if (v.getId() == R.id.content) {
HitTestResult result = ((WebView)v).getHitTestResult();
if (result != null && (result.getType() == HitTestResult.IMAGE_TYPE || result.getType() == HitTestResult.SRC_IMAGE_ANCHOR_TYPE)) {
menu.setHeaderTitle(result.getExtra());
getActivity().getMenuInflater().inflate(R.menu.article_content_img_context_menu, menu);
/* FIXME I have no idea how to do this correctly ;( */
m_activity.setLastContentImageHitTestUrl(result.getExtra());
} else {
menu.setHeaderTitle(m_article.title);
getActivity().getMenuInflater().inflate(R.menu.article_link_context_menu, menu);
}
} else {
menu.setHeaderTitle(m_article.title);
getActivity().getMenuInflater().inflate(R.menu.article_link_context_menu, menu);
}
2012-03-12 08:51:57 +00:00
super.onCreateContextMenu(menu, v, menuInfo);
}
@SuppressLint("NewApi")
2011-09-09 11:58:11 +00:00
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
2012-09-19 12:01:31 +00:00
m_activity.setProgressBarVisibility(true);
2011-09-09 11:58:11 +00:00
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);
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) + "...";
2011-11-30 09:02:26 +00:00
else
titleStr = m_article.title;
2013-04-16 06:35:48 +00:00
title.setTypeface(null, m_article.unread ? Typeface.BOLD : Typeface.NORMAL);
title.setText(Html.fromHtml(titleStr));
2012-12-31 08:58:26 +00:00
//title.setPaintFlags(title.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
2012-09-19 19:23:26 +00:00
title.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
try {
Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse(m_article.link.trim()));
startActivity(intent);
} catch (Exception e) {
e.printStackTrace();
m_activity.toast(R.string.error_other_error);
}
}
});
registerForContextMenu(title);
}
TextView comments = (TextView)view.findViewById(R.id.comments);
if (comments != null) {
if (m_activity.getApiLevel() >= 4 && m_article.comments_count > 0) {
String commentsTitle = getString(R.string.article_comments, m_article.comments_count);
comments.setText(commentsTitle);
2012-12-31 08:58:26 +00:00
//comments.setPaintFlags(title.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
comments.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
try {
String link = (m_article.comments_link != null && m_article.comments_link.length() > 0) ?
m_article.comments_link : m_article.link;
Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse(link.trim()));
startActivity(intent);
} catch (Exception e) {
e.printStackTrace();
m_activity.toast(R.string.error_other_error);
}
}
});
} else {
comments.setVisibility(View.GONE);
}
}
2013-01-02 14:51:11 +00:00
WebView web = (WebView)view.findViewById(R.id.content);
if (web != null) {
registerForContextMenu(web);
2012-09-19 12:01:31 +00:00
web.setWebChromeClient(new WebChromeClient() {
@Override
public void onProgressChanged(WebView view, int progress) {
2012-09-19 12:16:38 +00:00
m_activity.setProgress(Math.round(((float)progress / 100f) * 10000));
2012-09-19 12:01:31 +00:00
if (progress == 100) {
m_activity.setProgressBarVisibility(false);
}
}
});
web.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
return m_detector.onTouchEvent(event);
}
});
String content;
2011-11-29 04:03:38 +00:00
String cssOverride = "";
WebSettings ws = web.getSettings();
ws.setSupportZoom(true);
2012-12-09 11:10:00 +00:00
ws.setBuiltInZoomControls(false);
web.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);
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}";
} else if (m_prefs.getString("theme", "THEME_DARK").equals("THEME_DARK_GRAY")) {
cssOverride = "body { background : transparent; color : #e0e0e0}";
} else {
2012-12-30 23:14:01 +00:00
cssOverride = "body { background : transparent; }";
}
2012-12-30 23:14:01 +00:00
web.setBackgroundColor(getResources().getColor(android.R.color.transparent));
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();
}
String align = m_prefs.getBoolean("justify_article_text", true) ? "text-align : justify;" : "";
2012-02-25 11:05:37 +00:00
switch (Integer.parseInt(m_prefs.getString("font_size", "0"))) {
case 0:
cssOverride += "body { "+align+" font-size : 14px; } ";
2012-02-25 11:05:37 +00:00
break;
case 1:
cssOverride += "body { "+align+" font-size : 18px; } ";
2012-02-25 11:05:37 +00:00
break;
case 2:
cssOverride += "body { "+align+" font-size : 21px; } ";
2012-02-25 11:05:37 +00:00
break;
}
2011-11-29 04:03:38 +00:00
content =
"<html>" +
"<head>" +
"<meta content=\"text/html; charset=utf-8\" http-equiv=\"content-type\">" +
"<style type=\"text/css\">" +
"body { padding : 0px; margin : 0px; }" +
2011-11-29 04:03:38 +00:00
cssOverride +
/* "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 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();
2012-09-19 05:45:03 +00:00
content += "<p><img src=\"" + strUrl.replace("\"", "\\\"") + "\"></p>";
}
} catch (MalformedURLException e) {
//
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
content += "<p>&nbsp;</p><p>&nbsp;</p></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();
}
2012-09-17 12:28:32 +00:00
if (m_activity.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.feed_title != null) {
tagv.setText(m_article.feed_title);
} else if (m_article.tags != null) {
2011-11-28 09:45:19 +00:00
String tagsStr = "";
for (String tag : m_article.tags)
tagsStr += tag + ", ";
tagsStr = tagsStr.replaceAll(", $", "");
tagv.setText(tagsStr);
} else {
tagv.setVisibility(View.GONE);
}
}
TextView author = (TextView)view.findViewById(R.id.author);
if (author != null) {
if (m_article.author != null && m_article.author.length() > 0) {
author.setText(m_article.author);
} else {
author.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());
2012-09-17 12:28:32 +00:00
m_activity = (OnlineActivity)activity;
//m_article = m_onlineServices.getSelectedArticle();
m_detector = new GestureDetector(m_activity, new GestureDetector.OnGestureListener() {
@Override
public boolean onSingleTapUp(MotionEvent e) {
// TODO Auto-generated method stub
return false;
}
@Override
public void onShowPress(MotionEvent e) {
// TODO Auto-generated method stub
}
@Override
public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX,
float distanceY) {
// TODO Auto-generated method stub
return false;
}
@Override
public void onLongPress(MotionEvent e) {
m_activity.openContextMenu(getView());
}
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
float velocityY) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean onDown(MotionEvent e) {
// TODO Auto-generated method stub
return false;
}
});
m_detector.setOnDoubleTapListener(this);
}
@Override
public boolean onDoubleTap(MotionEvent arg0) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean onDoubleTapEvent(MotionEvent arg0) {
// TODO Auto-generated method stub
return false;
}
private void onLeftSideTapped() {
ArticlePager ap = (ArticlePager) m_activity.getSupportFragmentManager().findFragmentByTag(CommonActivity.FRAG_ARTICLE);
if (ap != null && ap.isAdded()) {
ap.selectArticle(false);
}
}
private void onRightSideTapped() {
ArticlePager ap = (ArticlePager) m_activity.getSupportFragmentManager().findFragmentByTag(CommonActivity.FRAG_ARTICLE);
if (ap != null && ap.isAdded()) {
ap.selectArticle(true);
}
}
@Override
public boolean onSingleTapConfirmed(MotionEvent e) {
int width = getView().getWidth();
int x = Math.round(e.getX());
if (x <= width/15) {
onLeftSideTapped();
return true;
} else if (x >= width-(width/15)) {
onRightSideTapped();
return true;
} /* else if (!m_activity.isCompatMode()) {
ActionBar bar = m_activity.getActionBar();
if (bar.isShowing()) {
bar.hide();
} else {
bar.show();
}
} */
return false;
2011-09-09 11:58:11 +00:00
}
2011-09-09 11:58:11 +00:00
}