Example usage for android.widget AdapterView.OnItemClickListener interface-usage

List of usage examples for android.widget AdapterView.OnItemClickListener interface-usage

Introduction

In this page you can find the example usage for android.widget AdapterView.OnItemClickListener interface-usage.

Usage

From source file com.android.view.leg.ImageGridForLeg.java

/**
 * The main fragment that powers the ImageGridActivity screen. Fairly straight
 * forward GridView implementation with the key addition being the ImageWorker
 * class w/ImageCache to load children asynchronously, keeping the UI nice and
 * smooth and caching thumbnails for quick retrieval. The cache is retained over
 * configuration changes like orientation change so the images are populated

From source file sharedcode.turboeditor.activity.SelectFileActivity.java

public class SelectFileActivity extends ActionBarActivity implements SearchView.OnQueryTextListener,
        AdapterView.OnItemClickListener, EditTextDialog.EditDialogListener {
    private String currentFolder = PreferenceHelper.SD_CARD_ROOT;
    private ListView listView;
    private boolean wantAFile = true;
    private MenuItem mSearchViewMenuItem;

From source file com.dena.app.usage.watcher.fragment.WatchFragment.java

public class WatchFragment extends Fragment
        implements SwipeRefreshLayout.OnRefreshListener, AdapterView.OnItemClickListener {

    public static WatchFragment newInstance(boolean isTotal) {
        WatchFragment fragment = new WatchFragment();
        Bundle bundle = new Bundle();

From source file com.google.android.gcm.demo.ui.MainActivity.java

/**
 * Tha app's main activity
 */
public class MainActivity extends AppCompatActivity implements AdapterView.OnItemClickListener {
    static final String PREF_LAST_SCREEN_ID = "selected_screen_id";
    static final String PREF_OPEN_DRAWER_AT_STARTUP = "open_drawer_at_startup";

From source file com.ibm.mil.readyapps.physio.activities.LandingActivity.java

public class LandingActivity extends ActionBarActivity implements AdapterView.OnItemClickListener {
    private DrawerLayout landingMenuDrawer;
    private ListView menuItems;
    // private String[] menuItemsTitles;
    private ActionBar actionBar;
    private ActionBarDrawerToggle menuListener;

From source file com.maskyn.fileeditorpro.activity.SelectFileActivity.java

public class SelectFileActivity extends ActionBarActivity implements SearchView.OnQueryTextListener,
        AdapterView.OnItemClickListener, EditTextDialog.EditDialogListener {
    private String currentFolder;
    private ListView listView;
    private boolean wantAFile = true;
    private MenuItem mSearchViewMenuItem;

From source file li.barter.fragments.NavDrawerFragment.java

/**
 * Fragment to load in the Navigation Drawer Created by vinaysshenoy on 29/6/14.
 */
public class NavDrawerFragment extends AbstractBarterLiFragment implements AdapterView.OnItemClickListener {

    private static final String TAG = "NavDrawerFragment";

From source file com.sourcey.materiallogindemo.MainActivity.java

public class MainActivity extends ActionBarActivity
        implements AdapterView.OnItemSelectedListener, AdapterView.OnItemClickListener {
    //private DecimalFormat df = new DecimalFormat("#,###,###.##");
    //private SimpleDateFormat dtf = new SimpleDateFormat("yyyy-MM-dd HH:mm");
    private String datePoint = "";
    private AutoCompleteTextView txtStart;

From source file com.moonpi.swiftnotes.MainActivity.java

public class MainActivity extends Activity implements AdapterView.OnItemClickListener, View.OnClickListener {

    /*
    Copyright  2014 MoonPi
        
    Licensed under the Apache License, Version 2.0 (the "License");

From source file de.elanev.studip.android.app.frontend.planer.PlannerFragment.java

/**
 * @author joern
 *         <p/>
 *         Fragment for showing data related to the /events route of the api.
 *         In Stud.IP known as Planner.
 */