2011-12-09 20:49:55 +00:00
|
|
|
package org.fox.ttrss;
|
|
|
|
|
2012-06-19 10:18:00 +00:00
|
|
|
import org.fox.ttrss.types.Article;
|
|
|
|
|
2011-12-09 20:49:55 +00:00
|
|
|
import android.app.Activity;
|
|
|
|
import android.os.Bundle;
|
2012-06-19 14:24:22 +00:00
|
|
|
import android.support.v4.app.Fragment;
|
|
|
|
import android.support.v4.app.FragmentManager;
|
|
|
|
import android.support.v4.app.FragmentStatePagerAdapter;
|
2011-12-09 20:49:55 +00:00
|
|
|
import android.support.v4.view.ViewPager;
|
2012-06-20 09:12:46 +00:00
|
|
|
import android.util.Log;
|
2011-12-09 20:49:55 +00:00
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
|
|
|
|
public class ArticlePager extends Fragment {
|
|
|
|
|
2012-06-20 09:12:46 +00:00
|
|
|
private final String TAG = "ArticlePager";
|
2011-12-09 20:49:55 +00:00
|
|
|
private PagerAdapter m_adapter;
|
|
|
|
private OnlineServices m_onlineServices;
|
|
|
|
private HeadlinesFragment m_hf;
|
|
|
|
private Article m_article;
|
|
|
|
|
|
|
|
private class PagerAdapter extends FragmentStatePagerAdapter {
|
|
|
|
|
2011-12-10 07:22:27 +00:00
|
|
|
public PagerAdapter(FragmentManager fm) {
|
2011-12-09 20:49:55 +00:00
|
|
|
super(fm);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Fragment getItem(int position) {
|
|
|
|
Article article = m_hf.getArticleAtPosition(position);
|
|
|
|
|
|
|
|
if (article != null) {
|
|
|
|
ArticleFragment af = new ArticleFragment(article);
|
|
|
|
return af;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCount() {
|
|
|
|
return m_hf.getAllArticles().size();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public ArticlePager() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
public ArticlePager(Article article) {
|
|
|
|
super();
|
|
|
|
|
|
|
|
m_article = article;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
|
|
|
View view = inflater.inflate(R.layout.article_pager, container, false);
|
|
|
|
|
2012-06-19 14:24:22 +00:00
|
|
|
m_adapter = new PagerAdapter(getActivity().getSupportFragmentManager());
|
2011-12-09 20:49:55 +00:00
|
|
|
|
|
|
|
ViewPager pager = (ViewPager) view.findViewById(R.id.article_pager);
|
|
|
|
|
2011-12-10 07:22:27 +00:00
|
|
|
int position = m_hf.getArticlePosition(m_article);
|
2011-12-09 20:49:55 +00:00
|
|
|
|
|
|
|
pager.setAdapter(m_adapter);
|
|
|
|
pager.setCurrentItem(position);
|
|
|
|
pager.setOnPageChangeListener(new ViewPager.OnPageChangeListener() {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPageScrollStateChanged(int arg0) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPageScrolled(int arg0, float arg1, int arg2) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onPageSelected(int position) {
|
|
|
|
Article article = m_hf.getArticleAtPosition(position);
|
|
|
|
|
|
|
|
if (article != null) {
|
2011-12-10 07:22:27 +00:00
|
|
|
if (article.unread) {
|
|
|
|
article.unread = false;
|
|
|
|
m_onlineServices.saveArticleUnread(article);
|
|
|
|
}
|
2011-12-09 20:49:55 +00:00
|
|
|
m_onlineServices.setSelectedArticle(article);
|
2012-06-20 09:12:46 +00:00
|
|
|
|
|
|
|
//Log.d(TAG, "Page #" + position + "/" + m_adapter.getCount());
|
|
|
|
|
|
|
|
if (position == m_adapter.getCount() - 5) {
|
|
|
|
m_hf.refresh(true);
|
|
|
|
m_adapter.notifyDataSetChanged();
|
|
|
|
}
|
2011-12-09 20:49:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAttach(Activity activity) {
|
|
|
|
super.onAttach(activity);
|
|
|
|
|
2012-06-19 15:12:01 +00:00
|
|
|
m_hf = (HeadlinesFragment) getActivity().getSupportFragmentManager().findFragmentByTag(MainActivity.FRAG_HEADLINES);
|
2011-12-09 20:49:55 +00:00
|
|
|
m_onlineServices = (OnlineServices)activity;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|