2011-12-05 17:22:31 +00:00
|
|
|
package org.fox.ttrss;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
|
|
|
|
import android.app.Activity;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.SharedPreferences;
|
|
|
|
import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
|
|
|
|
import android.database.Cursor;
|
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.BitmapFactory;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.os.Environment;
|
|
|
|
import android.preference.PreferenceManager;
|
|
|
|
import android.provider.BaseColumns;
|
|
|
|
import android.support.v4.app.Fragment;
|
|
|
|
import android.support.v4.widget.SimpleCursorAdapter;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.ContextMenu;
|
|
|
|
import android.view.ContextMenu.ContextMenuInfo;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
import android.widget.AdapterView;
|
|
|
|
import android.widget.AdapterView.AdapterContextMenuInfo;
|
|
|
|
import android.widget.AdapterView.OnItemClickListener;
|
|
|
|
import android.widget.ImageView;
|
|
|
|
import android.widget.ListView;
|
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
|
|
public class OfflineFeedsFragment extends Fragment implements OnItemClickListener, OnSharedPreferenceChangeListener {
|
|
|
|
private final String TAG = this.getClass().getSimpleName();
|
|
|
|
private SharedPreferences m_prefs;
|
|
|
|
private FeedListAdapter m_adapter;
|
|
|
|
private static final String ICON_PATH = "/org.fox.ttrss/icons/";
|
|
|
|
private int m_selectedFeedId;
|
|
|
|
private boolean m_enableFeedIcons;
|
|
|
|
private Cursor m_cursor;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreateContextMenu(ContextMenu menu, View v,
|
|
|
|
ContextMenuInfo menuInfo) {
|
|
|
|
|
|
|
|
getActivity().getMenuInflater().inflate(R.menu.feed_menu, menu);
|
|
|
|
|
|
|
|
AdapterContextMenuInfo info = (AdapterContextMenuInfo) menuInfo;
|
|
|
|
Cursor cursor = (Cursor)m_adapter.getItem(info.position);
|
|
|
|
|
|
|
|
if (cursor != null)
|
|
|
|
menu.setHeaderTitle(cursor.getString(cursor.getColumnIndex("title")));
|
|
|
|
|
|
|
|
super.onCreateContextMenu(menu, v, menuInfo);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-12-05 18:32:45 +00:00
|
|
|
public Cursor createCursor() {
|
2011-12-06 06:03:55 +00:00
|
|
|
String unreadOnly = ((OfflineActivity)getActivity()).getUnreadOnly() ? "unread > 0" : null;
|
2011-12-05 18:32:45 +00:00
|
|
|
|
2011-12-05 19:19:11 +00:00
|
|
|
return ((OfflineActivity)getActivity()).getReadableDb().query("feeds_unread",
|
2011-12-06 06:03:55 +00:00
|
|
|
null, unreadOnly, null, null, null, "title");
|
2011-12-05 18:32:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void refresh() {
|
2011-12-06 09:26:19 +00:00
|
|
|
if (m_cursor != null && !m_cursor.isClosed()) m_cursor.close();
|
2011-12-06 06:03:55 +00:00
|
|
|
|
|
|
|
m_cursor = createCursor();
|
|
|
|
|
2011-12-06 09:26:19 +00:00
|
|
|
if (m_cursor != null) {
|
|
|
|
m_adapter.changeCursor(m_cursor);
|
|
|
|
m_adapter.notifyDataSetChanged();
|
|
|
|
}
|
2011-12-05 18:32:45 +00:00
|
|
|
}
|
|
|
|
|
2011-12-05 17:22:31 +00:00
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
|
|
|
|
|
|
|
if (savedInstanceState != null) {
|
|
|
|
m_selectedFeedId = savedInstanceState.getInt("selectedFeedId");
|
|
|
|
}
|
|
|
|
|
|
|
|
View view = inflater.inflate(R.layout.feeds_fragment, container, false);
|
|
|
|
|
|
|
|
ListView list = (ListView)view.findViewById(R.id.feeds);
|
|
|
|
|
2011-12-05 18:32:45 +00:00
|
|
|
m_cursor = createCursor();
|
2011-12-05 17:22:31 +00:00
|
|
|
|
|
|
|
m_adapter = new FeedListAdapter(getActivity(), R.layout.feeds_row, m_cursor,
|
|
|
|
new String[] { "title", "unread" }, new int[] { R.id.title, R.id.unread_counter }, 0);
|
|
|
|
|
|
|
|
list.setAdapter(m_adapter);
|
|
|
|
list.setOnItemClickListener(this);
|
2011-12-06 10:24:57 +00:00
|
|
|
list.setEmptyView(view.findViewById(R.id.no_feeds));
|
2011-12-05 17:22:31 +00:00
|
|
|
registerForContextMenu(list);
|
|
|
|
|
|
|
|
view.findViewById(R.id.loading_container).setVisibility(View.GONE);
|
|
|
|
|
|
|
|
m_enableFeedIcons = m_prefs.getBoolean("download_feed_icons", false);
|
|
|
|
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDestroy() {
|
|
|
|
super.onDestroy();
|
|
|
|
|
2011-12-06 09:26:19 +00:00
|
|
|
if (m_cursor != null && !m_cursor.isClosed()) m_cursor.close();
|
2011-12-05 17:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onAttach(Activity activity) {
|
|
|
|
super.onAttach(activity);
|
|
|
|
|
|
|
|
m_prefs = PreferenceManager.getDefaultSharedPreferences(getActivity().getApplicationContext());
|
|
|
|
m_prefs.registerOnSharedPreferenceChangeListener(this);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSaveInstanceState (Bundle out) {
|
|
|
|
super.onSaveInstanceState(out);
|
|
|
|
|
|
|
|
out.putInt("selectedFeedId", m_selectedFeedId);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onItemClick(AdapterView<?> av, View view, int position, long id) {
|
|
|
|
ListView list = (ListView)getActivity().findViewById(R.id.feeds);
|
|
|
|
|
|
|
|
if (list != null) {
|
|
|
|
Cursor cursor = (Cursor) list.getItemAtPosition(position);
|
|
|
|
|
|
|
|
if (cursor != null) {
|
|
|
|
int feedId = (int) cursor.getLong(0);
|
|
|
|
Log.d(TAG, "clicked on feed " + feedId);
|
|
|
|
|
2011-12-06 06:03:55 +00:00
|
|
|
((OfflineActivity)getActivity()).viewFeed(feedId);
|
2011-12-05 17:22:31 +00:00
|
|
|
|
|
|
|
m_selectedFeedId = feedId;
|
|
|
|
|
|
|
|
m_adapter.notifyDataSetChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setLoadingStatus(int status, boolean showProgress) {
|
|
|
|
if (getView() != null) {
|
|
|
|
TextView tv = (TextView)getView().findViewById(R.id.loading_message);
|
|
|
|
|
|
|
|
if (tv != null) {
|
|
|
|
tv.setText(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
View pb = getView().findViewById(R.id.loading_progress);
|
|
|
|
|
|
|
|
if (pb != null) {
|
|
|
|
pb.setVisibility(showProgress ? View.VISIBLE : View.GONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class FeedListAdapter extends SimpleCursorAdapter {
|
|
|
|
|
|
|
|
|
|
|
|
public FeedListAdapter(Context context, int layout, Cursor c,
|
|
|
|
String[] from, int[] to, int flags) {
|
|
|
|
super(context, layout, c, from, to, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static final int VIEW_NORMAL = 0;
|
|
|
|
public static final int VIEW_SELECTED = 1;
|
|
|
|
|
|
|
|
public static final int VIEW_COUNT = VIEW_SELECTED+1;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getViewTypeCount() {
|
|
|
|
return VIEW_COUNT;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getItemViewType(int position) {
|
|
|
|
Cursor cursor = (Cursor) this.getItem(position);
|
|
|
|
|
|
|
|
if (cursor.getLong(0) == m_selectedFeedId) {
|
|
|
|
return VIEW_SELECTED;
|
|
|
|
} else {
|
|
|
|
return VIEW_NORMAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View getView(int position, View convertView, ViewGroup parent) {
|
|
|
|
View v = convertView;
|
|
|
|
|
|
|
|
Cursor cursor = (Cursor)getItem(position);
|
|
|
|
|
|
|
|
if (v == null) {
|
|
|
|
int layoutId = R.layout.feeds_row;
|
|
|
|
|
|
|
|
switch (getItemViewType(position)) {
|
|
|
|
case VIEW_SELECTED:
|
|
|
|
layoutId = R.layout.feeds_row_selected;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutInflater vi = (LayoutInflater)getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
|
|
|
v = vi.inflate(layoutId, null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
TextView tt = (TextView) v.findViewById(R.id.title);
|
|
|
|
|
|
|
|
if (tt != null) {
|
|
|
|
tt.setText(cursor.getString(cursor.getColumnIndex("title")));
|
|
|
|
}
|
|
|
|
|
|
|
|
TextView tu = (TextView) v.findViewById(R.id.unread_counter);
|
|
|
|
|
|
|
|
if (tu != null) {
|
|
|
|
tu.setText(String.valueOf(cursor.getInt(cursor.getColumnIndex("unread"))));
|
|
|
|
tu.setVisibility((cursor.getInt(cursor.getColumnIndex("unread")) > 0) ? View.VISIBLE : View.INVISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageView icon = (ImageView)v.findViewById(R.id.icon);
|
|
|
|
|
|
|
|
if (icon != null) {
|
|
|
|
|
|
|
|
if (m_enableFeedIcons) {
|
|
|
|
|
|
|
|
File storage = Environment.getExternalStorageDirectory();
|
|
|
|
|
|
|
|
File iconFile = new File(storage.getAbsolutePath() + ICON_PATH + cursor.getInt(cursor.getColumnIndex(BaseColumns._ID)) + ".ico");
|
|
|
|
if (iconFile.exists()) {
|
|
|
|
Bitmap bmpOrig = BitmapFactory.decodeFile(iconFile.getAbsolutePath());
|
|
|
|
if (bmpOrig != null) {
|
|
|
|
icon.setImageBitmap(bmpOrig);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
icon.setImageResource(cursor.getInt(cursor.getColumnIndex("unread")) > 0 ? R.drawable.ic_rss : R.drawable.ic_rss_bw);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
icon.setImageResource(cursor.getInt(cursor.getColumnIndex("unread")) > 0 ? R.drawable.ic_rss : R.drawable.ic_rss_bw);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void sortFeeds() {
|
2011-12-06 11:29:57 +00:00
|
|
|
try {
|
|
|
|
refresh();
|
|
|
|
} catch (IllegalStateException e) {
|
|
|
|
// we're probably closing and DB is gone already
|
|
|
|
}
|
2011-12-05 17:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
|
|
|
|
String key) {
|
|
|
|
|
|
|
|
sortFeeds();
|
|
|
|
m_enableFeedIcons = m_prefs.getBoolean("download_feed_icons", false);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2011-12-06 09:26:19 +00:00
|
|
|
public int getFeedIdAtPosition(int position) {
|
|
|
|
Cursor c = (Cursor)m_adapter.getItem(position);
|
|
|
|
|
|
|
|
if (c != null) {
|
|
|
|
int feedId = c.getInt(0);
|
|
|
|
c.close();
|
|
|
|
return feedId;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-05 17:22:31 +00:00
|
|
|
}
|