package com.costum.android.widget; import android.content.Context; import android.util.AttributeSet; import android.util.Log; import android.view.View; import android.widget.AbsListView; import android.widget.ProgressBar; import android.widget.RelativeLayout; import com.daifan.R; /* * Copyright (C) 2012 Fabian Leon Ortega <http://orleonsoft.blogspot.com/, * http://yelamablog.blogspot.com/> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ public class PullAndLoadListView extends PullToRefreshListView { public PullAndLoadListView(Context context, AttributeSet attrs) { super(context, attrs); initComponent(context); } // Listener to process load more items when user reaches the end of the list private OnLoadMoreListener mOnLoadMoreListener; // To know if the list is loading more items private boolean mIsLoadingMore = false; // footer private RelativeLayout mFooterView; // private TextView mLabLoadMore; private ProgressBar mProgressBarLoadMore; public PullAndLoadListView(Context context) { super(context); initComponent(context); } public PullAndLoadListView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); initComponent(context); } public void initComponent(Context context) { // footer mFooterView = (RelativeLayout) mInflater.inflate( R.layout.new_load_more_footer, this, false); /* * mLabLoadMore = (TextView) mFooterView * .findViewById(R.id.load_more_lab_view); */ mProgressBarLoadMore = (ProgressBar) mFooterView .findViewById(R.id.load_more_progressBar); addFooterView(mFooterView); } /** * Register a callback to be invoked when this list reaches the end (last * item be visible) * * @param onLoadMoreListener The callback to run. */ public void setOnLoadMoreListener(OnLoadMoreListener onLoadMoreListener) { mOnLoadMoreListener = onLoadMoreListener; } @Override public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) { super.onScroll(view, firstVisibleItem, visibleItemCount, totalItemCount); // if need a list to load more items if (mOnLoadMoreListener != null) { if (visibleItemCount == totalItemCount) { mProgressBarLoadMore.setVisibility(View.GONE); // mLabLoadMore.setVisibility(View.GONE); return; } boolean loadMore = firstVisibleItem + visibleItemCount >= totalItemCount; if (!mIsLoadingMore && loadMore && mRefreshState != REFRESHING && mCurrentScrollState != SCROLL_STATE_IDLE) { mProgressBarLoadMore.setVisibility(View.VISIBLE); // mLabLoadMore.setVisibility(View.VISIBLE); mIsLoadingMore = true; onLoadMore(); } } } public void onLoadMore() { Log.d(TAG, "onLoadMore"); if (mOnLoadMoreListener != null) { mOnLoadMoreListener.onLoadMore(); } } /** * Notify the loading more operation has finished */ public void onLoadMoreComplete() { mIsLoadingMore = false; } /** * Interface definition for a callback to be invoked when list reaches the * last item (the user load more items in the list) */ public interface OnLoadMoreListener { /** * Called when the list reaches the last item (the last item is visible * to the user) A call to * {@link com.costum.android.widget.PullAndLoadListView #onLoadMoreComplete()} is expected to * indicate that the loadmore has completed. */ public void onLoadMore(); } }