Example usage for android.widget BaseAdapter subclass-usage

List of usage examples for android.widget BaseAdapter subclass-usage

Introduction

In this page you can find the example usage for android.widget BaseAdapter subclass-usage.

Usage

From source file org.peercast.pecaport.WanConnectionsAdapter.java

/**
 * ??????Spinner?
 *
 * @author (c) 2015, T Yoshizawa
 * Dual licensed under the MIT or GPL licenses.
 * */

From source file com.app.jdy.adapter.MyRecordAdapter.java

/**
 * 
 * description :
 *
 * @version 1.0
 * @author zhoufeng

From source file com.mifos.mifosxdroid.adapters.LoanRepaymentScheduleAdapter.java

/**
 * Created by ishankhanna on 19/06/14.
 */
public class LoanRepaymentScheduleAdapter extends BaseAdapter {

    List<Period> periodList;

From source file com.mifos.mifosxdroid.adapters.LoanAccountsListAdapter.java

/**
 * Created by ishankhanna on 01/03/14.
 */
public class LoanAccountsListAdapter extends BaseAdapter {

    Context context;

From source file com.mifos.mifosxdroid.adapters.SavingsAccountsListAdapter.java

/**
 * Created by ishankhanna on 23/05/14.
 */
public class SavingsAccountsListAdapter extends BaseAdapter {

    Context context;

From source file com.mifos.mifosxdroid.adapters.GroupListAdapter.java

/**
 * Created by ishankhanna on 28/06/14.
 */
public class GroupListAdapter extends BaseAdapter {

    LayoutInflater layoutInflater;

From source file com.mifos.mifosxdroid.adapters.SavingsAccountTransactionsListAdapter.java

/**
 * Created by ishankhanna on 30/05/14.
 */
public class SavingsAccountTransactionsListAdapter extends BaseAdapter {

    private List<Transaction> listOfTransactions;

From source file com.balieiro.facebook.FriendsListAdapter.java

public class FriendsListAdapter extends BaseAdapter {
    private List<FriendItem> mFriendItemList;
    private final Fragment mFragment;

    static class ViewHolder {
        public TextView text;

From source file net.bither.adapter.hot.MarketFragmentListAdapter.java

public class MarketFragmentListAdapter extends BaseAdapter {
    private FragmentActivity activity;
    private List<Market> markets;

    public MarketFragmentListAdapter(FragmentActivity activity, List<Market> markets) {
        this.activity = activity;

From source file com.commonsware.cwac.masterdetail.PagerListAdapter.java

/**
 * A ListAdapter whose contents come from a PagerAdapter.
 * Basically, each page is represented by an element in the
 * list. This is useful in cases where you want to show the
 * pages in a list, such as in the master portion of a
 * master-detail UI.