Example usage for android.widget ExpandableListView.OnChildClickListener interface-usage

List of usage examples for android.widget ExpandableListView.OnChildClickListener interface-usage

Introduction

In this page you can find the example usage for android.widget ExpandableListView.OnChildClickListener interface-usage.

Usage

From source file edu.nd.darts.cimon.ExpandableListActivity.java

/**
 * 
 *  ***NOTE***  
 * This is a copy of android.app.ExpandableListActivity designed to extend
 * FragmentActivity rather than Activity.  This will make ExpandableListActivity
 * compatible with the android.support.v4 package, which currently does not

From source file com.android.calendar.selectcalendars.ExpandableListFragmentActivity.java

/**
 * An activity that displays an expandable list of items by binding to a data
 * source implementing the ExpandableListAdapter, and exposes event handlers
 * when the user selects an item.
 * <p>
 * ExpandableListActivity hosts a {@link android.widget.ExpandableListView

From source file org.projectbuendia.client.ui.lists.PatientListFragment.java

/** A fragment showing a filterable list of patients. */
public class PatientListFragment extends ProgressFragment implements ExpandableListView.OnChildClickListener {

    /**
     * The serialization (saved instance state) Bundle key representing the
     * activated item position. Only used on tablets.

From source file org.projectbuendia.client.ui.patientlist.PatientListFragment.java

/** A fragment showing a filterable list of patients. */
public class PatientListFragment extends ProgressFragment implements ExpandableListView.OnChildClickListener {

    private PatientSearchController mController;
    private PatientListController mListController;
    private PatientListTypedCursorAdapter mPatientAdapter;

From source file com.aboveware.abovegame.expandable.ExpandableListFragment.java

public abstract class ExpandableListFragment extends Fragment implements OnCreateContextMenuListener,
        ExpandableListView.OnChildClickListener, ExpandableListView.OnGroupCollapseListener,
        ExpandableListView.OnGroupExpandListener, AdapterView.OnItemLongClickListener {

    static final int INTERNAL_EMPTY_ID = 0x00ff0001;
    static final int INTERNAL_LIST_CONTAINER_ID = 0x00ff0003;

From source file com.ephemeraldreams.gallyshuttle.ui.MainActivity.java

/**
 * Activity to handle navigation.
 */
public class MainActivity extends BaseActivity
        implements ExpandableListView.OnGroupClickListener, ExpandableListView.OnChildClickListener {

From source file at.wada811.app.fragment.ExpandableListFragment.java

/**
 * An fragment that displays an expandable list of items by binding to a data
 * source implementing the ExpandableListAdapter, and exposes event handlers
 * when the user selects an item.
 */
public class ExpandableListFragment extends Fragment

From source file com.money.manager.ex.common.ExpandableListFragment.java

/**
 * This class has originally been taken from
 * http://stackoverflow.com/questions/6051050/expandablelistfragment-with-loadermanager-for-compatibility-package
 * and then modified by Manfred Moser <manfred@simpligility.com> to get it to work with the v4 r4 compatibility
 * library. With inspirations from the library source.
 *

From source file com.aboveware.actionbar.support.ExpandableListFragmentSupport.java

public abstract class ExpandableListFragmentSupport extends Fragment implements OnCreateContextMenuListener,
        ExpandableListView.OnChildClickListener, ExpandableListView.OnGroupCollapseListener,
        ExpandableListView.OnGroupExpandListener, AdapterView.OnItemLongClickListener, IExpandableListFragment {

    static final int INTERNAL_EMPTY_ID = 0x00ff0001;
    static final int INTERNAL_LIST_CONTAINER_ID = 0x00ff0003;

From source file com.aboveware.actionbar.honeycomb.ExpandableListFragment.java

/**
 * This class has originally been taken from
 * http://stackoverflow.com/questions/6051050
 * /expandablelistfragment-with-loadermanager-for-compatibility-package and then
 * modified by Manfred Moser <manfred@simpligility.com> to get it to work with
 * the v4 r4 compatibility library. With inspirations from the library source.