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

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

Introduction

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

Usage

From source file com.actionbarsherlock.app.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.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 dev.drsoran.moloko.fragments.base.MolokoExpandableListFragment.java

public abstract class MolokoExpandableListFragment<D> extends SherlockListFragment implements IConfigurable,
        IOnSettingsChangedListener, LoaderCallbacks<List<D>>, LoaderExpandableListFragmentImpl.Support<D>,
        IRtmAccessLevelAware, ExpandableListView.OnGroupClickListener, ExpandableListView.OnChildClickListener,
        ExpandableListView.OnGroupCollapseListener, ExpandableListView.OnGroupExpandListener {
    private final ConfigurableFragmentImpl baseImpl;

From source file com.mycodehurts.rapidmath.app.NavigationDrawerFragment.java

/**
 * Fragment used for managing interactions for and presentation of a navigation drawer.
 * See the <a href="https://developer.android.com/design/patterns/navigation-drawer.html#Interaction">
 * design guidelines</a> for a complete explanation of the behaviors implemented here.
 */
public class NavigationDrawerFragment extends Fragment

From source file com.near.chimerarevo.activities.MainActivity.java

public class MainActivity extends BaseActivity implements ExpandableListView.OnChildClickListener,
        ExpandableListView.OnGroupClickListener, ExpandableListView.OnGroupExpandListener, View.OnClickListener,
        IabHelper.OnIabPurchaseFinishedListener, IabHelper.QueryInventoryFinishedListener {

    private IabHelper mHelper;
    private Bundle instanceState;

From source file com.cryart.sabbathschool.ui.activity.SSMainActivity.java

public class SSMainActivity extends ActionBarActivity
        implements ExpandableListView.OnChildClickListener, ExpandableListView.OnGroupClickListener,
        SharedPreferences.OnSharedPreferenceChangeListener, SSWebView.OnScrollChangedCallback {
    private int SS_TOOLBAR_STATUS_BAR_ALPHA = 0;

    private SharedPreferences _SSPreferences;

From source file radu.pidroid.Controller.java

public class Controller extends Activity implements SensorEventListener, View.OnTouchListener,
        SeekBar.OnSeekBarChangeListener, ExpandableListView.OnGroupClickListener, JoystickView.MoveListener {

    //
    public final static String EXTRA_CONTROLS_ID = "radu.pidroid.CONTROLSID";
    public final static String EXTRA_MAX_TILT_ANGLE = "radu.pidroid.MAXTILTANGLE";

From source file com.readboy.mathproblem.app.ExpandableListFragment.java

interface ExpandableListListener
        extends ExpandableListView.OnChildClickListener, ExpandableListView.OnGroupClickListener,
        ExpandableListView.OnGroupExpandListener, ExpandableListView.OnGroupCollapseListener {

}