Android Open Source - Scanner-For-Zotero Pending List Adapter






From Project

Back to project page Scanner-For-Zotero.

License

The source code is released under:

GNU General Public License

If you think the Android project Scanner-For-Zotero 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 2011 John M. Schanck/*from   www.  ja va2  s. c  o  m*/
 * 
 * ScannerForZotero 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.
 * 
 * ScannerForZotero 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 ScannerForZotero.  If not, see <http://www.gnu.org/licenses/>.
 */

package org.ale.scanner.zotero;

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

import android.content.Context;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;

public class PendingListAdapter extends ArrayAdapter<String> {

    public static final Integer STATUS_UNKNOWN_TYPE = new Integer(R.string.pending_status_unknown);
    public static final Integer STATUS_LOADING = new Integer(R.string.pending_status_loading);
    public static final Integer STATUS_NO_NETWORK = new Integer(R.string.pending_status_nonet);
    public static final Integer STATUS_BAD_REQUEST = new Integer(R.string.pending_status_bad_request);
    public static final Integer STATUS_SERVER_ERROR = new Integer(R.string.pending_status_server_error);
    public static final Integer STATUS_QUOTA_EXCEEDED = new Integer(R.string.pending_status_quota_exceeded);
    public static final Integer STATUS_FAILED = new Integer(R.string.pending_status_failed);
    public static final Integer STATUS_NOT_FOUND = new Integer(R.string.pending_status_not_found);

    private ArrayList<Integer> mPendingStatus;
    private Context mContext;
    public int _hack_childSize;

    public PendingListAdapter(Context context, int resource,
            int textViewResourceId, List<String> objects,
            ArrayList<Integer> status) {
        super(context, resource, textViewResourceId, objects);
        mContext = context;
        mPendingStatus = status;
        _hack_childSize = 72;
    }

    public boolean hasItem(String item){
        return (getPosition(item) != -1);
    }

    public void setStatus(String item, Integer status){
        int idx = getPosition(item);
        if(idx < 0) return;
        mPendingStatus.set(idx, status);
        notifyDataSetChanged();
    }

    public Integer getStatus(String item){
        return mPendingStatus.get(getPosition(item));
    }

    @Override
    public void add(String item){
        mPendingStatus.add(STATUS_LOADING);
        super.add(item);
    }

    @Override
    public void clear(){
        mPendingStatus.clear();
        super.clear();
    }

    @Override
    public void remove(String item){
        int idx = getPosition(item);
        mPendingStatus.remove(idx);
        super.remove(item);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        convertView = super.getView(position, convertView, parent);

        if(convertView != null && position < mPendingStatus.size()){
            TextView tv = (TextView) convertView.findViewById(R.id.pending_item_status);
            int stat = mPendingStatus.get(position).intValue();
            String strstat = mContext.getString(stat);
            tv.setText(strstat);
            SafeViewFlipper vf = (SafeViewFlipper)convertView.findViewById(R.id.pending_item_img);
            if(stat != R.string.pending_status_loading){
                vf.setDisplayedChild(1);
            }else{
                vf.setDisplayedChild(0);
            }
            int cvh = convertView.getMeasuredHeight();
            if(cvh != 0){
                _hack_childSize = cvh;
            }
        }
        return convertView;
    }
}




Java Source Code List

org.ale.scanner.zotero.BibDetailJSONAdapter.java
org.ale.scanner.zotero.BibItemListAdapter.java
org.ale.scanner.zotero.Dialogs.java
org.ale.scanner.zotero.EditItemActivity.java
org.ale.scanner.zotero.LoginActivity.java
org.ale.scanner.zotero.MainActivity.java
org.ale.scanner.zotero.ManageAccountsActivity.java
org.ale.scanner.zotero.PString.java
org.ale.scanner.zotero.PendingListAdapter.java
org.ale.scanner.zotero.SafeViewFlipper.java
org.ale.scanner.zotero.Util.java
org.ale.scanner.zotero.data.Access.java
org.ale.scanner.zotero.data.Account.java
org.ale.scanner.zotero.data.BibItemDBHandler.java
org.ale.scanner.zotero.data.BibItem.java
org.ale.scanner.zotero.data.Collection.java
org.ale.scanner.zotero.data.CreatorType.java
org.ale.scanner.zotero.data.Database.java
org.ale.scanner.zotero.data.Group.java
org.ale.scanner.zotero.data.ItemField.java
org.ale.scanner.zotero.data.ItemType.java
org.ale.scanner.zotero.web.APIHandler.java
org.ale.scanner.zotero.web.APIRequest.java
org.ale.scanner.zotero.web.HttpsClient.java
org.ale.scanner.zotero.web.RequestQueue.java
org.ale.scanner.zotero.web.googlebooks.GoogleBooksAPIClient.java
org.ale.scanner.zotero.web.googlebooks.GoogleBooksHandler.java
org.ale.scanner.zotero.web.worldcat.WorldCatAPIClient.java
org.ale.scanner.zotero.web.worldcat.WorldCatHandler.java
org.ale.scanner.zotero.web.zotero.ZoteroAPIClient.java
org.ale.scanner.zotero.web.zotero.ZoteroHandler.java