summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-02-11 14:59:15 +0300
committerAndrew Dolgov <[email protected]>2015-02-11 14:59:15 +0300
commit0264b2d30f90f503eda98dee4d1eb734de74019c (patch)
tree02831720598ea70a5d9cfcd2bb4c63435fd328fe
parent2349845298ba0bba9e4c5c5150d44addea47b910 (diff)
add some animations
article: load webview contents in a runnable
-rwxr-xr-x[-rw-r--r--]org.fox.ttrss/build.gradle1
-rwxr-xr-xorg.fox.ttrss/org.fox.ttrss.iml1
-rwxr-xr-x[-rw-r--r--]org.fox.ttrss/src/main/AndroidManifest.xml2
-rwxr-xr-x[-rw-r--r--]org.fox.ttrss/src/main/java/org/fox/ttrss/ArticleFragment.java598
-rwxr-xr-x[-rw-r--r--]org.fox.ttrss/src/main/java/org/fox/ttrss/ArticleImagesPagerActivity.java2
-rwxr-xr-x[-rw-r--r--]org.fox.ttrss/src/main/java/org/fox/ttrss/ArticlePager.java4
6 files changed, 311 insertions, 297 deletions
diff --git a/org.fox.ttrss/build.gradle b/org.fox.ttrss/build.gradle
index 08bd180b..e96a63f9 100644..100755
--- a/org.fox.ttrss/build.gradle
+++ b/org.fox.ttrss/build.gradle
@@ -34,4 +34,5 @@ dependencies {
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.shamanland:fab:0.0.5'
compile 'ch.acra:acra:4.5.0'
+ compile 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.1.0@aar'
}
diff --git a/org.fox.ttrss/org.fox.ttrss.iml b/org.fox.ttrss/org.fox.ttrss.iml
index 3e1df6ed..140aa714 100755
--- a/org.fox.ttrss/org.fox.ttrss.iml
+++ b/org.fox.ttrss/org.fox.ttrss.iml
@@ -86,6 +86,7 @@
<orderEntry type="library" exported="" name="cardview-v7-21.0.0" level="project" />
<orderEntry type="library" exported="" name="appcompat-v7-21.0.3" level="project" />
<orderEntry type="library" exported="" name="jsoup-1.6.1" level="project" />
+ <orderEntry type="library" exported="" name="view-pager-transforms-1.1.0" level="project" />
<orderEntry type="library" exported="" name="library-2.4.1" level="project" />
<orderEntry type="library" exported="" name="gson-2.3" level="project" />
<orderEntry type="library" exported="" name="support-v4-21.0.3" level="project" />
diff --git a/org.fox.ttrss/src/main/AndroidManifest.xml b/org.fox.ttrss/src/main/AndroidManifest.xml
index 21ce8e31..13503c8f 100644..100755
--- a/org.fox.ttrss/src/main/AndroidManifest.xml
+++ b/org.fox.ttrss/src/main/AndroidManifest.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.fox.ttrss"
- android:versionCode="299"
+ android:versionCode="300"
android:versionName="1.87" >
<uses-sdk
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 da8624b6..d531d483 100644..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
@@ -8,6 +8,7 @@ import android.graphics.Typeface;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
+import android.os.Handler;
import android.preference.PreferenceManager;
import android.support.v4.app.Fragment;
import android.text.Html;
@@ -149,340 +150,347 @@ public class ArticleFragment extends Fragment {
@SuppressLint("NewApi")
@Override
- public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
+ public View onCreateView(LayoutInflater inflater, ViewGroup container, final Bundle savedInstanceState) {
if (savedInstanceState != null) {
m_article = savedInstanceState.getParcelable("article");
//m_fsviewShown = savedInstanceState.getBoolean("fsviewShown");
}
- View view = inflater.inflate(R.layout.article_fragment, container, false);
+ final View view = inflater.inflate(R.layout.article_fragment, container, false);
/* if (m_fsviewShown) {
view.findViewById(R.id.article_fullscreen_video).setVisibility(View.VISIBLE);
view.findViewById(R.id.article_scrollview).setVisibility(View.INVISIBLE);
} */
- if (m_article != null) {
+ m_contentView = view.findViewById(R.id.article_scrollview);
+ m_customViewContainer = (FrameLayout) view.findViewById(R.id.article_fullscreen_video);
+
+ View scrollView = view.findViewById(R.id.article_scrollview);
+ m_fab = view.findViewById(R.id.article_fab);
+
+ if (scrollView != null && m_fab != null) {
+ if (m_prefs.getBoolean("enable_article_fab", true)) {
+ scrollView.setOnTouchListener(new ShowHideOnScroll(m_fab));
+
+ m_fab.setOnClickListener(new OnClickListener() {
+ @Override
+ public void onClick(View view) {
+ try {
+ URL url = new URL(m_article.link.trim());
+ String uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(),
+ url.getPort(), url.getPath(), url.getQuery(), url.getRef()).toString();
+ Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
+ startActivity(intent);
+ } catch (Exception e) {
+ e.printStackTrace();
+ m_activity.toast(R.string.error_other_error);
+ }
+ }
+ });
+ } else {
+ m_fab.setVisibility(View.GONE);
+ }
+ }
- m_contentView = view.findViewById(R.id.article_scrollview);
- m_customViewContainer = (FrameLayout) view.findViewById(R.id.article_fullscreen_video);
+ final int articleFontSize = Integer.parseInt(m_prefs.getString("article_font_size_sp", "16"));
+ final int articleSmallFontSize = Math.max(10, Math.min(18, articleFontSize - 2));
- View scrollView = view.findViewById(R.id.article_scrollview);
- m_fab = view.findViewById(R.id.article_fab);
+ TextView title = (TextView)view.findViewById(R.id.title);
- if (scrollView != null && m_fab != null) {
- if (m_prefs.getBoolean("enable_article_fab", true)) {
- scrollView.setOnTouchListener(new ShowHideOnScroll(m_fab));
+ if (title != null) {
- m_fab.setOnClickListener(new OnClickListener() {
- @Override
- public void onClick(View view) {
- try {
- URL url = new URL(m_article.link.trim());
- String uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(),
- url.getPort(), url.getPath(), url.getQuery(), url.getRef()).toString();
- Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
- startActivity(intent);
- } catch (Exception e) {
- e.printStackTrace();
- m_activity.toast(R.string.error_other_error);
- }
- }
- });
- } else {
- m_fab.setVisibility(View.GONE);
+ 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));
}
- int articleFontSize = Integer.parseInt(m_prefs.getString("article_font_size_sp", "16"));
- int articleSmallFontSize = Math.max(10, Math.min(18, articleFontSize - 2));
-
- TextView title = (TextView)view.findViewById(R.id.title);
-
- 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));
- }
-
- String titleStr;
-
- if (m_article.title.length() > 200)
- titleStr = m_article.title.substring(0, 200) + "...";
- else
- titleStr = m_article.title;
-
- title.setText(Html.fromHtml(titleStr));
- //title.setPaintFlags(title.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
- title.setOnClickListener(new OnClickListener() {
- @Override
- public void onClick(View v) {
- try {
- URL url = new URL(m_article.link.trim());
- String uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(),
- url.getPort(), url.getPath(), url.getQuery(), url.getRef()).toString();
- Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
- 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) {
- comments.setTextSize(TypedValue.COMPLEX_UNIT_SP, articleSmallFontSize);
-
- String commentsTitle = getResources().getQuantityString(R.plurals.article_comments, m_article.comments_count, m_article.comments_count);
- comments.setText(commentsTitle);
- //comments.setPaintFlags(title.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
- comments.setOnClickListener(new OnClickListener() {
- @Override
- public void onClick(View v) {
- try {
- URL url = new URL((m_article.comments_link != null && m_article.comments_link.length() > 0) ?
- m_article.comments_link : m_article.link);
- String uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(),
- url.getPort(), url.getPath(), url.getQuery(), url.getRef()).toString();
- Intent intent = new Intent(Intent.ACTION_VIEW,
- Uri.parse(uri));
- startActivity(intent);
- } catch (Exception e) {
- e.printStackTrace();
- m_activity.toast(R.string.error_other_error);
- }
- }
- });
-
- } else {
- comments.setVisibility(View.GONE);
- }
- }
-
- TextView note = (TextView)view.findViewById(R.id.note);
-
- if (note != null) {
- if (m_article.note != null && !"".equals(m_article.note)) {
- note.setTextSize(TypedValue.COMPLEX_UNIT_SP, articleSmallFontSize);
- note.setText(m_article.note);
- } else {
- note.setVisibility(View.GONE);
- }
-
- }
-
- m_web = (WebView)view.findViewById(R.id.article_content);
-
- 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;
- }
- }
-
- String content;
- String cssOverride = "";
-
- WebSettings ws = m_web.getSettings();
- ws.setSupportZoom(false);
+ String titleStr;
+
+ if (m_article.title.length() > 200)
+ titleStr = m_article.title.substring(0, 200) + "...";
+ else
+ titleStr = m_article.title;
+
+ title.setText(Html.fromHtml(titleStr));
+ //title.setPaintFlags(title.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
+ title.setOnClickListener(new OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ try {
+ URL url = new URL(m_article.link.trim());
+ String uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(),
+ url.getPort(), url.getPath(), url.getQuery(), url.getRef()).toString();
+ Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
+ startActivity(intent);
+ } catch (Exception e) {
+ e.printStackTrace();
+ m_activity.toast(R.string.error_other_error);
+ }
+ }
+ });
- TypedValue tvBackground = new TypedValue();
- getActivity().getTheme().resolveAttribute(R.attr.articleBackground, tvBackground, true);
+ registerForContextMenu(title);
+ }
- String backgroundHexColor = String.format("#%06X", (0xFFFFFF & tvBackground.data));
+ TextView comments = (TextView)view.findViewById(R.id.comments);
+
+ if (comments != null) {
+ if (m_activity.getApiLevel() >= 4 && m_article.comments_count > 0) {
+ comments.setTextSize(TypedValue.COMPLEX_UNIT_SP, articleSmallFontSize);
+
+ String commentsTitle = getResources().getQuantityString(R.plurals.article_comments, m_article.comments_count, m_article.comments_count);
+ comments.setText(commentsTitle);
+ //comments.setPaintFlags(title.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
+ comments.setOnClickListener(new OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ try {
+ URL url = new URL((m_article.comments_link != null && m_article.comments_link.length() > 0) ?
+ m_article.comments_link : m_article.link);
+ String uri = new URI(url.getProtocol(), url.getUserInfo(), url.getHost(),
+ url.getPort(), url.getPath(), url.getQuery(), url.getRef()).toString();
+ Intent intent = new Intent(Intent.ACTION_VIEW,
+ Uri.parse(uri));
+ startActivity(intent);
+ } catch (Exception e) {
+ e.printStackTrace();
+ m_activity.toast(R.string.error_other_error);
+ }
+ }
+ });
- cssOverride = "body { background : "+ backgroundHexColor+"; }";
+ } else {
+ comments.setVisibility(View.GONE);
+ }
+ }
+
+ TextView note = (TextView)view.findViewById(R.id.note);
- TypedValue tvTextColor = new TypedValue();
- getActivity().getTheme().resolveAttribute(R.attr.articleTextColor, tvTextColor, true);
+ if (note != null) {
+ if (m_article.note != null && !"".equals(m_article.note)) {
+ note.setTextSize(TypedValue.COMPLEX_UNIT_SP, articleSmallFontSize);
+ note.setText(m_article.note);
+ } else {
+ note.setVisibility(View.GONE);
+ }
- String textColor = String.format("#%06X", (0xFFFFFF & tvTextColor.data));
+ }
- cssOverride += "body { color : "+textColor+"; }";
+ m_web = (WebView)view.findViewById(R.id.article_content);
- TypedValue tvLinkColor = new TypedValue();
- getActivity().getTheme().resolveAttribute(R.attr.linkColor, tvLinkColor, true);
+ TextView dv = (TextView)view.findViewById(R.id.date);
+
+ if (dv != null) {
+ dv.setTextSize(TypedValue.COMPLEX_UNIT_SP, articleSmallFontSize);
+
+ Date d = new Date(m_article.updated * 1000L);
+ DateFormat df = new SimpleDateFormat("MMM dd, HH:mm");
+ dv.setText(df.format(d));
+ }
+
+ TextView author = (TextView)view.findViewById(R.id.author);
+
+ boolean hasAuthor = false;
+
+ if (author != null) {
+ author.setTextSize(TypedValue.COMPLEX_UNIT_SP, articleSmallFontSize);
+
+ if (m_article.author != null && m_article.author.length() > 0) {
+ author.setText(getString(R.string.author_formatted, m_article.author));
+ } else {
+ author.setVisibility(View.GONE);
+ }
+ hasAuthor = true;
+ }
- String linkHexColor = String.format("#%06X", (0xFFFFFF & tvLinkColor.data));
- cssOverride += " a:link {color: "+linkHexColor+";} a:visited { color: "+linkHexColor+";}";
+ TextView tagv = (TextView)view.findViewById(R.id.tags);
- String articleContent = m_article.content != null ? m_article.content : "";
+ if (tagv != null) {
+ tagv.setTextSize(TypedValue.COMPLEX_UNIT_SP, articleSmallFontSize);
- if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
- ws.setJavaScriptEnabled(true);
+ if (m_article.feed_title != null) {
+ String fTitle = m_article.feed_title;
- m_chromeClient = new FSVideoChromeClient(view);
- m_web.setWebChromeClient(m_chromeClient);
+ if (!hasAuthor && m_article.author != null && m_article.author.length() > 0) {
+ fTitle += " (" + getString(R.string.author_formatted, m_article.author) + ")";
}
- if (m_prefs.getBoolean("justify_article_text", true)) {
- cssOverride += "body { text-align : justify; } ";
- }
-
- 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();
- }
- }
- }
- }
-
- content += "</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, "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);
+ tagv.setText(fTitle);
+ } else 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);
+ }
+ }
+
+ if (m_article != null) {
+
+ 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;
+ }
+ }
+
+ String content;
+ String cssOverride = "";
+
+ WebSettings ws = m_web.getSettings();
+ ws.setSupportZoom(false);
+
+ TypedValue tvBackground = new TypedValue();
+ getActivity().getTheme().resolveAttribute(R.attr.articleBackground, tvBackground, true);
+
+ String backgroundHexColor = String.format("#%06X", (0xFFFFFF & tvBackground.data));
+
+ cssOverride = "body { background : "+ backgroundHexColor+"; }";
+
+ TypedValue tvTextColor = new TypedValue();
+ getActivity().getTheme().resolveAttribute(R.attr.articleTextColor, tvTextColor, true);
+
+ String textColor = String.format("#%06X", (0xFFFFFF & tvTextColor.data));
+
+ cssOverride += "body { color : "+textColor+"; }";
+
+ TypedValue tvLinkColor = new TypedValue();
+ getActivity().getTheme().resolveAttribute(R.attr.linkColor, tvLinkColor, true);
+
+ String linkHexColor = String.format("#%06X", (0xFFFFFF & tvLinkColor.data));
+ cssOverride += " a:link {color: "+linkHexColor+";} a:visited { color: "+linkHexColor+";}";
+
+ String articleContent = m_article.content != null ? m_article.content : "";
+
+ if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
+ ws.setJavaScriptEnabled(true);
+
+ m_chromeClient = new FSVideoChromeClient(view);
+ m_web.setWebChromeClient(m_chromeClient);
+ }
+
+ if (m_prefs.getBoolean("justify_article_text", true)) {
+ cssOverride += "body { text-align : justify; } ";
+ }
+
+ 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();
+ }
+ }
+ }
+ }
+
+ content += "</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, "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();
}
- }
- } catch (RuntimeException e) {
- e.printStackTrace();
- }
-
// if (m_activity.isSmallScreen())
// web.setOnTouchListener(m_gestureListener);
-
- m_web.setVisibility(View.VISIBLE);
- }
-
- TextView dv = (TextView)view.findViewById(R.id.date);
-
- if (dv != null) {
- dv.setTextSize(TypedValue.COMPLEX_UNIT_SP, articleSmallFontSize);
-
- Date d = new Date(m_article.updated * 1000L);
- DateFormat df = new SimpleDateFormat("MMM dd, HH:mm");
- dv.setText(df.format(d));
- }
- TextView author = (TextView)view.findViewById(R.id.author);
+ m_web.setVisibility(View.VISIBLE);
+ }
- boolean hasAuthor = false;
-
- if (author != null) {
- author.setTextSize(TypedValue.COMPLEX_UNIT_SP, articleSmallFontSize);
-
- if (m_article.author != null && m_article.author.length() > 0) {
- author.setText(getString(R.string.author_formatted, m_article.author));
- } else {
- author.setVisibility(View.GONE);
- }
- hasAuthor = true;
- }
+ }
+ }, 100);
+
+ }
- TextView tagv = (TextView)view.findViewById(R.id.tags);
-
- if (tagv != null) {
- tagv.setTextSize(TypedValue.COMPLEX_UNIT_SP, articleSmallFontSize);
-
- if (m_article.feed_title != null) {
- String fTitle = m_article.feed_title;
-
- if (!hasAuthor && m_article.author != null && m_article.author.length() > 0) {
- fTitle += " (" + getString(R.string.author_formatted, m_article.author) + ")";
- }
-
- tagv.setText(fTitle);
- } else 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);
- }
- }
-
- }
-
return view;
}
diff --git a/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticleImagesPagerActivity.java b/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticleImagesPagerActivity.java
index 9d31d8b0..577265e2 100644..100755
--- a/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticleImagesPagerActivity.java
+++ b/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticleImagesPagerActivity.java
@@ -26,6 +26,7 @@ import android.widget.FrameLayout;
import android.widget.ProgressBar;
import android.widget.TextView;
+import com.ToxicBakery.viewpager.transforms.DepthPageTransformer;
import com.nostra13.universalimageloader.core.DisplayImageOptions;
import com.nostra13.universalimageloader.core.ImageLoader;
import com.nostra13.universalimageloader.core.assist.FailReason;
@@ -295,6 +296,7 @@ public class ArticleImagesPagerActivity extends CommonActivity implements Gestur
ViewPager pager = (ViewPager) findViewById(R.id.article_images_pager);
pager.setAdapter(m_adapter);
+ pager.setPageTransformer(true, new DepthPageTransformer());
UnderlinePageIndicator indicator = (UnderlinePageIndicator)findViewById(R.id.article_images_indicator);
indicator.setViewPager(pager);
diff --git a/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticlePager.java b/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticlePager.java
index 76703b0d..bf6f05c9 100644..100755
--- a/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticlePager.java
+++ b/org.fox.ttrss/src/main/java/org/fox/ttrss/ArticlePager.java
@@ -16,6 +16,7 @@ import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;
+import com.ToxicBakery.viewpager.transforms.StackTransformer;
import com.google.gson.JsonElement;
import com.viewpagerindicator.UnderlinePageIndicator;
@@ -93,7 +94,8 @@ public class ArticlePager extends Fragment {
m_listener.onArticleSelected(m_article, false);
pager.setAdapter(m_adapter);
-
+ pager.setPageTransformer(true, new StackTransformer());
+
UnderlinePageIndicator indicator = (UnderlinePageIndicator)view.findViewById(R.id.article_titles);
indicator.setViewPager(pager);