Android Open Source - feedhive Async Cursor List Adapter






From Project

Back to project page feedhive.

License

The source code is released under:

SOFTWARE LICENSE ---------------- Copyright (C) 2012, 2013, 2014 Younghyung Cho. <yhcting77@gmail.com> All rights reserved. This file is part of FeedHive This program is licensed under the FreeBSD l...

If you think the Android project feedhive listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/******************************************************************************
 * Copyright (C) 2012, 2013, 2014//  w  w w  .j av  a 2  s  .  c o  m
 * Younghyung Cho. <yhcting77@gmail.com>
 * All rights reserved.
 *
 * This file is part of FeedHive
 *
 * This program is licensed under the FreeBSD license
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are
 * met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * The views and conclusions contained in the software and documentation
 * are those of the authors and should not be interpreted as representing
 * official policies, either expressed or implied, of the FreeBSD Project.
 *****************************************************************************/
package free.yhc.feeder;

import android.content.Context;
import android.database.Cursor;
import android.view.View;
import android.view.animation.AnimationUtils;
import android.widget.ImageView;
import android.widget.ListView;
import free.yhc.feeder.model.UnexpectedExceptionHandler;
import free.yhc.feeder.model.Utils;

public class AsyncCursorListAdapter extends AsyncCursorAdapter {
    private static final boolean DBG = false;
    private static final Utils.Logger P = new Utils.Logger(AsyncCursorListAdapter.class);

    private static final int INVALID_POS = -1;
    private static final DataProvideStateHandler   sDpsHandler = new DataProvideStateHandler();

    private int     mAsyncLoadingAnchor = INVALID_POS;

    private static class DataProvideStateHandler implements AsyncAdapter.DataProvideStateListener {
        @Override
        public void
        onPreDataProvide(AsyncAdapter adapter, int anchorPos, long nrseq) {
            if (DBG) P.v("anchorPos(" + anchorPos + ")");
            AsyncCursorListAdapter adpr = (AsyncCursorListAdapter)adapter;
            adpr.setAsyncLoadingAnchor(anchorPos);
        }

        @Override
        public void
        onPostDataProvide(AsyncAdapter adapter, int anchorPos, long nrseq) {
            if (DBG) P.v("anchorPos(" + anchorPos + ")");
            AsyncCursorListAdapter adpr = (AsyncCursorListAdapter)adapter;
            adpr.setAsyncLoadingAnchor(INVALID_POS);
        }

        @Override
        public void
        onCancelledDataProvide(AsyncAdapter adapter, int anchorPos, long nrseq) {
            if (DBG) P.v("anchorPos(" + anchorPos + ")");
            AsyncCursorListAdapter adpr = (AsyncCursorListAdapter)adapter;
            adpr.setAsyncLoadingAnchor(INVALID_POS);
        }
    }

    @Override
    public String
    dump(UnexpectedExceptionHandler.DumpLevel lv) {
        return super.dump(lv) + "[ AsyncCursorListAdapter ]";
    }

    AsyncCursorListAdapter(Context      context,
                           Cursor       cursor,
                           ItemBuilder  bldr,
                           int          rowLayout,
                           ListView     lv,
                           Object       firstLoadingDummyItem,
                           int          dataReqSz,
                           int          maxArrSz,
                           boolean      hasLimit) {
        super(context,
              cursor,
              bldr,
              rowLayout,
              dataReqSz,
              maxArrSz,
              hasLimit);

        View firstLoadingView = UiHelper.inflateLayout(context, rowLayout);
        preBindView(firstLoadingView, context, INVALID_POS);
        init(firstLoadingView,
             lv,
             sDpsHandler,
             firstLoadingDummyItem);
    }

    private void
    setAsyncLoadingAnchor(int pos) {
        mAsyncLoadingAnchor = pos;
    }

    public boolean
    isLoadingItem(int pos) {
        return mAsyncLoadingAnchor == pos;
    }

    public void
    reloadDataSetAsync() {
        reloadDataSetAsync(sDpsHandler);
    }

    /**
     *
     * @param v
     * @param context
     * @param position
     * @return
     *   true : keep going to bind / false : stop binding.
     */
    protected final boolean
    preBindView(View v, final Context context, int position)  {
        ImageView loadingIv = (ImageView)v.findViewById(R.id.loading);
        View contentv = v.findViewById(R.id.content);
        if (isLoadingItem(position)) {
            loadingIv.setVisibility(View.VISIBLE);
            loadingIv.setImageResource(R.drawable.spinner_48);
            contentv.setVisibility(View.GONE);
            loadingIv.startAnimation(AnimationUtils.loadAnimation(mContext, R.anim.rotate_spin));
            return false;
        }

        if (null != loadingIv.getAnimation()) {
            loadingIv.getAnimation().cancel();
            loadingIv.setAnimation(null);
        }

        loadingIv.setVisibility(View.GONE);
        contentv.setVisibility(View.VISIBLE);
        return true;
    }
}




Java Source Code List

free.yhc.feeder.AppWidgetCategoryChooserActivity.java
free.yhc.feeder.AppWidgetMenuActivity.java
free.yhc.feeder.AppWidgetUpdateCategoryActivity.java
free.yhc.feeder.AsyncAdapter.java
free.yhc.feeder.AsyncCursorAdapter.java
free.yhc.feeder.AsyncCursorListAdapter.java
free.yhc.feeder.ChannelListActivity.java
free.yhc.feeder.ChannelListAdapter.java
free.yhc.feeder.ChannelListFragment.java
free.yhc.feeder.ChannelListPagerAdapter.java
free.yhc.feeder.ChannelSettingActivity.java
free.yhc.feeder.DBManagerActivity.java
free.yhc.feeder.DiagAsyncTask.java
free.yhc.feeder.FeederActivity.java
free.yhc.feeder.FeederApp.java
free.yhc.feeder.FeederPreferenceActivity.java
free.yhc.feeder.FragmentPagerAdapterEx.java
free.yhc.feeder.ItemListActivity.java
free.yhc.feeder.ItemListAdapter.java
free.yhc.feeder.ItemViewActivity.java
free.yhc.feeder.LifeSupportService.java
free.yhc.feeder.NotiManager.java
free.yhc.feeder.PredefinedChannelActivity.java
free.yhc.feeder.ScheduledUpdateService.java
free.yhc.feeder.UiHelper.java
free.yhc.feeder.appwidget.AppWidgetUtils.java
free.yhc.feeder.appwidget.Provider.java
free.yhc.feeder.appwidget.UpdateService.java
free.yhc.feeder.appwidget.ViewsFactory.java
free.yhc.feeder.appwidget.ViewsService.java
free.yhc.feeder.db.ColumnCategory.java
free.yhc.feeder.db.ColumnChannel.java
free.yhc.feeder.db.ColumnItem.java
free.yhc.feeder.db.DBPolicy.java
free.yhc.feeder.db.DB.java
free.yhc.feeder.model.AssetSQLiteHelper.java
free.yhc.feeder.model.AtomParser.java
free.yhc.feeder.model.BGTaskDownloadToFile.java
free.yhc.feeder.model.BGTaskDownloadToItemContent.java
free.yhc.feeder.model.BGTaskManager.java
free.yhc.feeder.model.BGTaskUpdateChannel.java
free.yhc.feeder.model.BGTask.java
free.yhc.feeder.model.BaseBGTask.java
free.yhc.feeder.model.ContentsManager.java
free.yhc.feeder.model.DelayedAction.java
free.yhc.feeder.model.Environ.java
free.yhc.feeder.model.Err.java
free.yhc.feeder.model.FeedParser.java
free.yhc.feeder.model.FeedPolicy.java
free.yhc.feeder.model.Feed.java
free.yhc.feeder.model.FeederException.java
free.yhc.feeder.model.HtmlParser.java
free.yhc.feeder.model.ItemActionHandler.java
free.yhc.feeder.model.KeyBasedLinkedList.java
free.yhc.feeder.model.ListenerManager.java
free.yhc.feeder.model.NetLoader.java
free.yhc.feeder.model.RSSParser.java
free.yhc.feeder.model.RTTask.java
free.yhc.feeder.model.ThreadEx.java
free.yhc.feeder.model.UnexpectedExceptionHandler.java
free.yhc.feeder.model.UsageReport.java
free.yhc.feeder.model.Utils.java