Example usage for android.widget BaseExpandableListAdapter subclass-usage

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

Introduction

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

Usage

From source file org.alfresco.mobile.android.application.fragments.workflow.task.TaskFilterExpandableAdapter.java

public class TaskFilterExpandableAdapter extends BaseExpandableListAdapter {
    LayoutInflater inflater;

    private Map<Integer, Integer> selectedItems = new HashMap<>(4);

    public TaskFilterExpandableAdapter(FragmentActivity context, Map<Integer, Integer> selectedItems) {

From source file eu.geopaparazzi.mapsforge.sourcesview.SourcesExpandableListAdapter.java

/**
 * Expandable list for tile sources.
 *
 * @author Andrea Antonello (www.hydrologis.com)
 */
public class SourcesExpandableListAdapter extends BaseExpandableListAdapter {

From source file org.mifos.androidclient.util.listadapters.SimpleExpandableListAdapter.java

/**
 * Represents an adapter which can be used with expandable lists.<br />
 * Is designed to work with entities which implement the {@link SimpleListItem}.
 */
public class SimpleExpandableListAdapter extends BaseExpandableListAdapter implements Filterable {

From source file com.money.manager.ex.adapter.CategoryExpandableListAdapter.java

public class CategoryExpandableListAdapter extends BaseExpandableListAdapter {

    public CategoryExpandableListAdapter(Context context, int layout, List<Category> categories,
            HashMap<Category, List<QueryCategorySubCategory>> subCategories, boolean showSelector) {
        mContext = context;
        mLayout = layout;

From source file co.nerdart.ourss.adapter.CursorLoaderExpandableListAdapter.java

/**
 * A fairly simple ExpandableListAdapter that creates views defined in an XML file. You can specify the XML file that defines the appearance of the views.
 */
public abstract class CursorLoaderExpandableListAdapter extends BaseExpandableListAdapter {
    private static final String URI_ARG = "uri";
    private final FragmentActivity mActivity;

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

public class HotAddressFragmentListAdapter extends BaseExpandableListAdapter
        implements PinnedExpandableListViewAdapter {
    private FragmentActivity activity;
    private List<Address> watchOnlys;
    private List<Address> privates;
    private LayoutInflater mLayoutInflater;

From source file com.example.survey2.ExpandableListAdapter.java

/**
 * An easy adapter to map static data to group and child views defined in an XML
 * file. You can separately specify the data backing the group as a List of
 * Maps. Each entry in the ArrayList corresponds to one group in the expandable
 * list. The Maps contain the data for each row. You also specify an XML file
 * that defines the views used to display a group, and a mapping from keys in

From source file im.vector.adapters.VectorMemberDetailsAdapter.java

/**
 * An adapter which can display the available actions list
 */
public class VectorMemberDetailsAdapter extends BaseExpandableListAdapter {

    // the layout

From source file es.ugr.swad.swadroid.modules.groups.EnrollmentExpandableListAdapter.java

/**
 * Adapter to populate with data  an expandable list.
 * The groups represent group types and their child represent every group of this group type.
 * There are two kind of layout: one for the groups and one for the children
 *
 * @author Helena Rodriguez Gijon <hrgijon@gmail.com>

From source file com.quarterfull.newsAndroid.ListView.SubscriptionExpandableListAdapter.java

public class SubscriptionExpandableListAdapter extends BaseExpandableListAdapter {
    private final String TAG = getClass().getCanonicalName();

    private Context mContext;
    private DatabaseConnectionOrm dbConn;