org.melato.android.bookmark.BookmarksActivity.java Source code

Java tutorial

Introduction

Here is the source code for org.melato.android.bookmark.BookmarksActivity.java

Source

/*-------------------------------------------------------------------------
 * Copyright (c) 2012,2013,2014, Alex Athanasopoulos.  All Rights Reserved.
 * alex@melato.org
 *-------------------------------------------------------------------------
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *-------------------------------------------------------------------------
 */
package org.melato.android.bookmark;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

import org.melato.android.R;
import org.melato.android.ui.RenameFragment;
import org.melato.client.Bookmark;
import org.melato.client.NameAlreadyExistsException;
import org.melato.client.RenameHandler;
import org.melato.util.AbstractCollector;

import android.content.Context;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.view.ContextMenu;
import android.view.ContextMenu.ContextMenuInfo;
import android.view.MenuInflater;
import android.view.MenuItem;
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.ArrayAdapter;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;

/** Activity that displays all bookmarks and possibly edit them.
 *  It has an optional context menu that allows the user to open, rename, or delete a bookmark.
 *  It opens a bookmark by default when the user clicks on it. 
 * @author alex
 *
 */
public class BookmarksActivity extends FragmentActivity implements OnItemClickListener {
    private BookmarkHandler bookmarkHandler;
    private List<Bookmark> bookmarks;
    private ListView listView;
    private ArrayAdapter<Bookmark> adapter;
    private boolean hasContextMenu = true;
    private int[] visibleTypes = null;

    public BookmarksActivity(BookmarkHandler bookmarkHandler) {
        super();
        this.bookmarkHandler = bookmarkHandler;
    }

    class BookmarkFilter extends AbstractCollector<Bookmark> {
        Collection<Bookmark> result;

        public BookmarkFilter(Collection<Bookmark> result) {
            super();
            this.result = result;
        }

        @Override
        public boolean add(Bookmark bookmark) {
            if (isEnabled(bookmark)) {
                result.add(bookmark);
            }
            return true;
        }
    }

    protected boolean isEnabled(Bookmark bookmark) {
        if (visibleTypes != null) {
            int type = bookmark.getType();
            for (int d : visibleTypes) {
                if (d == type) {
                    return true;
                }
            }
            return false;
        }
        return true;
    }

    class LoadTask extends AsyncTask<Void, Void, List<Bookmark>> {

        @Override
        protected List<Bookmark> doInBackground(Void... args) {
            List<Bookmark> bookmarks = new ArrayList<Bookmark>();
            BookmarkDatabase db = BookmarkDatabase.getInstance(BookmarksActivity.this);
            db.loadBookmarks(new BookmarkFilter(bookmarks));
            return bookmarks;
        }

        @Override
        protected void onPostExecute(List<Bookmark> result) {
            bookmarks = result;
            listView.setAdapter(adapter = new BookmarkAdapter());
            super.onPostExecute(result);
        }
    }

    class BookmarkAdapter extends ArrayAdapter<Bookmark> {
        public BookmarkAdapter() {
            super(BookmarksActivity.this, R.layout.bookmark_list_item, R.id.text, bookmarks);
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            View view = super.getView(position, convertView, parent);
            TextView textView = (TextView) view.findViewById(R.id.text);
            ImageView iconView = (ImageView) view.findViewById(R.id.icon);
            Bookmark bookmark = bookmarks.get(position);
            textView.setText(bookmark.getName());
            BookmarkType type = bookmarkHandler.getBookmarkType(bookmark.getType());
            iconView.setImageResource(type.getIcon());
            return view;
        }
    }

    protected void setHasContextMenu(boolean hasContextMenu) {
        this.hasContextMenu = hasContextMenu;
    }

    public boolean getHasContextMenu() {
        return hasContextMenu;
    }

    protected void open(Bookmark bookmark) {
        BookmarkType type = bookmarkHandler.getBookmarkType(bookmark.getType());
        Intent intent = type.createIntent(this, bookmark);
        startActivity(intent);
    }

    @Override
    public void onItemClick(AdapterView<?> l, View view, int position, long id) {
        open(bookmarks.get(position));
    }

    protected void setVisibleTypes(int[] types) {
        visibleTypes = types;
    }

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.bookmarks);
        listView = (ListView) findViewById(R.id.listView);
        listView.setOnItemClickListener(this);
        if (hasContextMenu) {
            registerForContextMenu(listView);
        }
    }

    @Override
    protected void onResume() {
        super.onResume();
        new LoadTask().execute();
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
    }

    @Override
    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
        super.onCreateContextMenu(menu, v, menuInfo);
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.bookmark_menu, menu);
    }

    class RenameBookmarkHandler implements RenameHandler {
        private Bookmark bookmark;

        public RenameBookmarkHandler(Bookmark bookmark) {
            super();
            this.bookmark = bookmark;
        }

        @Override
        public String getName() {
            return bookmark.getName();
        }

        @Override
        public void setName(String name) {
            BookmarkDatabase.getInstance(BookmarksActivity.this).renameBookmark(bookmark, name);
            adapter.notifyDataSetChanged();
        }
    }

    static class SaveBookmarkHandler implements RenameHandler {
        private Context context;
        private Bookmark bookmark;

        public SaveBookmarkHandler(Context context, Bookmark bookmark) {
            super();
            this.context = context;
            this.bookmark = bookmark;
        }

        @Override
        public String getName() {
            return bookmark.getName();
        }

        @Override
        public void setName(String name) throws NameAlreadyExistsException {
            BookmarkDatabase.getInstance(context).addBookmark(new Bookmark(bookmark, name));
        }
    }

    void renameBookmark(Bookmark bookmark, int position) {
        FragmentManager f = getSupportFragmentManager();
        RenameHandler handler = new RenameBookmarkHandler(bookmark);
        new RenameFragment(handler).show(f, "dialog");
    }

    @Override
    public boolean onContextItemSelected(MenuItem item) {
        if (!hasContextMenu)
            return false;
        AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
        Bookmark bookmark = bookmarks.get(info.position);
        int itemId = item.getItemId();
        if (itemId == R.id.open) {
            open(bookmark);
            return true;
        } else if (itemId == R.id.delete) {
            BookmarkDatabase.getInstance(this).deleteBookmark(bookmark);
            bookmarks.remove(info.position);
            adapter.notifyDataSetChanged();
            return true;
        } else if (itemId == R.id.rename) {
            renameBookmark(bookmark, info.position);
            return true;
        } else {
            return false;
        }
    }

    public static void addBookmarkDialog(FragmentActivity activity, Bookmark bookmark) {
        FragmentManager fm = activity.getSupportFragmentManager();
        SaveBookmarkHandler name = new SaveBookmarkHandler(activity, bookmark);
        RenameFragment rename = new RenameFragment(name);
        rename.setTitle(R.string.add_bookmark);
        rename.setOk(R.string.save);
        rename.show(fm, "dialog");
    }

}