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 com.elsdoerfer.android.autostarts.compat.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

From source file com.github.michalbednarski.intentslab.AppComponentsFragment.java

/**
 * Fragment hosted in AppInfoActivity, displays components and permissions of app
 */
public class AppComponentsFragment extends Fragment
        implements ExpandableListAdapter, ExpandableListView.OnChildClickListener {
    // Component sections (Identifiers must be unique and refer to header text resources)

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 com.massivcode.androidmusicplayer.activities.MainActivity.java

public class MainActivity extends AppCompatActivity implements NavigationView.OnNavigationItemSelectedListener,
        View.OnClickListener, AdapterView.OnItemClickListener, ExpandableListView.OnChildClickListener {

    private static final String TAG = MainActivity.class.getSimpleName();

    public static final String ACTION_NAME = "com.massivcode.androidmusicplayer.MainActivity";

From source file com.github.fi3te.iliasdownloader.view.fragment.viewpager.CurrentSyncFragment.java

/**
 * Created by wennier on 05.09.2015.
 */
public class CurrentSyncFragment extends Fragment
        implements ExpandableListView.OnChildClickListener, ViewPagerFragment {

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

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

}