2011-09-09 11:58:11 +00:00
|
|
|
package org.fox.ttrss;
|
|
|
|
|
2011-11-25 09:10:56 +00:00
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
import java.util.Date;
|
2011-11-23 16:38:21 +00:00
|
|
|
|
2011-11-28 09:45:19 +00:00
|
|
|
import org.fox.ttrss.ArticleOps.RelativeArticle;
|
|
|
|
import org.jsoup.helper.StringUtil;
|
|
|
|
|
2011-09-09 11:58:11 +00:00
|
|
|
import android.app.Activity;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.os.Bundle;
|
2011-11-25 11:03:14 +00:00
|
|
|
import android.preference.PreferenceManager;
|
2011-11-25 18:37:02 +00:00
|
|
|
import android.support.v4.app.Fragment;
|
2011-11-24 14:57:44 +00:00
|
|
|
import android.text.Html;
|
|
|
|
import android.text.method.LinkMovementMethod;
|
2011-11-28 09:45:19 +00:00
|
|
|
import android.util.Log;
|
2011-09-09 11:58:11 +00:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2011-11-28 09:45:19 +00:00
|
|
|
import android.view.View.OnClickListener;
|
2011-09-09 16:36:09 +00:00
|
|
|
import android.webkit.WebView;
|
2011-11-28 09:45:19 +00:00
|
|
|
import android.widget.ImageView;
|
2011-09-09 16:36:09 +00:00
|
|
|
import android.widget.TextView;
|
2011-09-09 11:58:11 +00:00
|
|
|
|
2011-11-27 16:04:25 +00:00
|
|
|
import com.google.ads.AdRequest;
|
|
|
|
import com.google.ads.AdView;
|
|
|
|
|
2011-11-28 09:45:19 +00:00
|
|
|
public class ArticleFragment extends Fragment implements OnClickListener {
|
2011-11-27 13:20:27 +00:00
|
|
|
@SuppressWarnings("unused")
|
2011-09-09 16:36:09 +00:00
|
|
|
private final String TAG = this.getClass().getSimpleName();
|
|
|
|
|
2011-11-25 11:03:14 +00:00
|
|
|
private SharedPreferences m_prefs;
|
2011-11-23 16:38:21 +00:00
|
|
|
private Article m_article;
|
2011-11-27 12:22:03 +00:00
|
|
|
private ArticleOps m_articleOps;
|
2011-11-28 09:45:19 +00:00
|
|
|
private Article m_nextArticle;
|
|
|
|
private Article m_prevArticle;
|
2011-09-09 11:58:11 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
|
|
|
|
|
|
|
if (savedInstanceState != null) {
|
2011-11-25 10:32:32 +00:00
|
|
|
m_article = savedInstanceState.getParcelable("article");
|
2011-09-09 11:58:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
View view = inflater.inflate(R.layout.article_fragment, container, false);
|
2011-11-28 09:45:19 +00:00
|
|
|
|
|
|
|
// TODO change to interface?
|
|
|
|
MainActivity activity = (MainActivity)getActivity();
|
|
|
|
|
|
|
|
if (activity != null) {
|
|
|
|
int orientation = activity.getWindowManager().getDefaultDisplay().getOrientation();
|
|
|
|
|
|
|
|
if (!activity.isSmallScreen()) {
|
|
|
|
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
|
|
|
|
2011-11-23 16:38:21 +00:00
|
|
|
if (m_article != null) {
|
|
|
|
|
|
|
|
TextView title = (TextView)view.findViewById(R.id.title);
|
|
|
|
|
|
|
|
if (title != null) {
|
2011-11-24 14:57:44 +00:00
|
|
|
title.setMovementMethod(LinkMovementMethod.getInstance());
|
2011-11-25 09:10:56 +00:00
|
|
|
title.setText(Html.fromHtml("<a href=\""+m_article.link.replace("\"", "\\\"")+"\">" + m_article.title + "</a>"));
|
2011-11-23 16:38:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WebView web = (WebView)view.findViewById(R.id.content);
|
|
|
|
|
|
|
|
if (web != null) {
|
|
|
|
|
|
|
|
// this is ridiculous
|
2011-11-24 14:57:44 +00:00
|
|
|
// TODO white on black style for dark theme
|
2011-11-25 09:10:56 +00:00
|
|
|
String content;
|
|
|
|
try {
|
2011-11-25 11:53:32 +00:00
|
|
|
String cssOverride = "";
|
2011-11-25 11:03:14 +00:00
|
|
|
|
|
|
|
if (m_prefs.getString("theme", "THEME_DARK").equals("THEME_DARK")) {
|
2011-11-28 09:45:19 +00:00
|
|
|
web.setBackgroundColor(android.R.color.black);
|
2011-11-26 07:27:06 +00:00
|
|
|
cssOverride = "body { background : black; color : #f0f0f0}\n";
|
2011-11-25 11:03:14 +00:00
|
|
|
}
|
|
|
|
|
2011-11-27 07:40:59 +00:00
|
|
|
content =
|
|
|
|
"<html>" +
|
2011-11-25 09:10:56 +00:00
|
|
|
"<head>" +
|
2011-11-27 07:40:59 +00:00
|
|
|
"<meta content=\"text/html; charset=utf-8\" http-equiv=\"content-type\">" +
|
2011-11-25 11:03:14 +00:00
|
|
|
"<style type=\"text/css\">" +
|
2011-11-25 11:53:32 +00:00
|
|
|
cssOverride +
|
2011-11-25 11:03:14 +00:00
|
|
|
"img { max-width : 90%; }" +
|
2011-11-25 11:53:32 +00:00
|
|
|
"body { text-align : justify; }" +
|
2011-11-25 11:03:14 +00:00
|
|
|
"</style>" +
|
2011-11-25 09:10:56 +00:00
|
|
|
"</head>" +
|
2011-11-27 07:40:59 +00:00
|
|
|
"<body>" + m_article.content + "</body></html>";
|
|
|
|
|
|
|
|
} catch (Exception e) {
|
2011-11-25 09:10:56 +00:00
|
|
|
content = getString(R.string.could_not_decode_content);
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
2011-11-23 16:38:21 +00:00
|
|
|
|
2011-11-27 07:40:59 +00:00
|
|
|
web.loadDataWithBaseURL(null, content, "text/html", "utf-8", null);
|
2011-11-23 16:38:21 +00:00
|
|
|
}
|
2011-11-24 12:08:02 +00:00
|
|
|
|
2011-11-25 09:10:56 +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-11-25 09:10:56 +00:00
|
|
|
}
|
2011-11-27 16:04:25 +00:00
|
|
|
|
|
|
|
AdView av = (AdView)view.findViewById(R.id.ad);
|
2011-11-28 05:20:29 +00:00
|
|
|
boolean enableAds = m_prefs.getBoolean("enable_ads", false);
|
2011-11-27 16:04:25 +00:00
|
|
|
|
|
|
|
if (av != null) {
|
2011-11-28 05:20:29 +00:00
|
|
|
if (enableAds) {
|
|
|
|
AdRequest request = new AdRequest();
|
|
|
|
request.addTestDevice(AdRequest.TEST_EMULATOR);
|
|
|
|
av.loadAd(request);
|
|
|
|
} else {
|
|
|
|
av.setVisibility(View.GONE);
|
|
|
|
}
|
2011-11-27 16:04:25 +00:00
|
|
|
}
|
2011-11-28 09:45:19 +00:00
|
|
|
|
|
|
|
ImageView next = (ImageView)view.findViewById(R.id.next_article);
|
|
|
|
|
|
|
|
if (next != null) {
|
|
|
|
if (m_nextArticle != null) {
|
|
|
|
next.setOnClickListener(this);
|
|
|
|
} else {
|
|
|
|
next.setImageResource(R.drawable.ic_next_article_disabled);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageView prev = (ImageView)view.findViewById(R.id.prev_article);
|
|
|
|
|
|
|
|
if (prev != null) {
|
|
|
|
if (m_prevArticle != null) {
|
|
|
|
prev.setOnClickListener(this);
|
|
|
|
} else {
|
|
|
|
prev.setImageResource(R.drawable.ic_prev_article_disabled);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-23 16:38:21 +00:00
|
|
|
}
|
|
|
|
|
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-09-09 16:36:09 +00:00
|
|
|
|
2011-11-25 10:32:32 +00:00
|
|
|
out.putParcelable("article", m_article);
|
2011-09-09 11:58:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAttach(Activity activity) {
|
|
|
|
super.onAttach(activity);
|
2011-11-23 16:38:21 +00:00
|
|
|
|
2011-11-25 11:03:14 +00:00
|
|
|
m_prefs = PreferenceManager.getDefaultSharedPreferences(getActivity().getApplicationContext());
|
2011-11-27 12:22:03 +00:00
|
|
|
m_articleOps = (ArticleOps)activity;
|
|
|
|
m_article = m_articleOps.getSelectedArticle();
|
2011-11-28 09:45:19 +00:00
|
|
|
|
|
|
|
m_prevArticle = m_articleOps.getRelativeArticle(m_article, RelativeArticle.BEFORE);
|
|
|
|
m_nextArticle = m_articleOps.getRelativeArticle(m_article, RelativeArticle.AFTER);
|
|
|
|
}
|
2011-11-27 12:22:03 +00:00
|
|
|
|
2011-11-28 09:45:19 +00:00
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
if (v.getId() == R.id.next_article) {
|
|
|
|
m_articleOps.openArticle(m_nextArticle, 0);
|
|
|
|
} else if (v.getId() == R.id.prev_article) {
|
|
|
|
m_articleOps.openArticle(m_prevArticle, R.anim.slide_right);
|
|
|
|
}
|
2011-09-09 11:58:11 +00:00
|
|
|
}
|
|
|
|
}
|