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.lullabot.android.apps.iosched.ui.tablet.TracksDropdownFragment.java

/**
 * A tablet-specific fragment that is a giant {@link android.widget.Spinner}-like widget. It shows
 * a {@link ListPopupWindow} containing a list of tracks, using {@link TracksAdapter}.
 *
 * Requires API level 11 or later since {@link ListPopupWindow} is API level 11+.
 */

From source file com.google.android.apps.iosched2.ui.tablet.TracksDropdownFragment.java

/**
 * A tablet-specific fragment that is a giant {@link android.widget.Spinner}-like widget. It shows
 * a {@link ListPopupWindow} containing a list of tracks, using {@link TracksAdapter}.
 *
 * Requires API level 11 or later since {@link ListPopupWindow} is API level 11+.
 */

From source file github.daneren2005.dsub.fragments.SelectListFragment.java

public abstract class SelectListFragment<T> extends SubsonicFragment implements AdapterView.OnItemClickListener {
    private static final String TAG = SelectListFragment.class.getSimpleName();
    protected ListView listView;
    protected ArrayAdapter adapter;
    protected BackgroundTask<List<T>> currentTask;
    protected List<T> objects;

From source file com.google.android.demos.rss.app.ChannelActivity.java

public class ChannelActivity extends FragmentActivity implements LoaderManager.LoaderCallbacks<Cursor>,
        SimpleCursorAdapter.ViewBinder, AdapterView.OnItemClickListener, View.OnClickListener {

    private static final String DEFAULT_CHANNEL = "http://feeds.digg.com/digg/popular.rss";

    private static final int MENU_GROUP_INTENT_OPTIONS = 1;

From source file co.touchlab.thumbcache.ui.ImageGridFragment.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
 * quickly as the user rotates the device.

From source file com.github.jobs.ui.fragment.SOUserPickerFragment.java

/**
 * @author cristian
 * @version 1.0
 */
public class SOUserPickerFragment extends SherlockFragment implements AdapterView.OnItemClickListener {
    private static final String KEY_USERS = "com.github.jobs.key.users";

From source file com.rsegismont.androlife.programlist.FragmentListProgrammes.java

public class FragmentListProgrammes extends AndrolifeListFragment
        implements AdapterView.OnItemClickListener, LoaderManager.LoaderCallbacks<Cursor> {
    public static final String IS_TODAY = "is_today";
    public static final String IS_SELECTED = "IS_SELECTED";
    public static final String TIME = "time";
    public static final String SELECTED_TIME = "SELECTED_TIME";

From source file com.xandy.calendar.selectcalendars.SelectCalendarsSyncAdapter.java

public class SelectCalendarsSyncAdapter extends BaseAdapter
        implements ListAdapter, AdapterView.OnItemClickListener, OnCalendarColorsLoadedListener {
    private static final String TAG = "SelCalsAdapter";
    private static final String COLOR_PICKER_DIALOG_TAG = "ColorPickerDialog";

    private static int COLOR_CHIP_SIZE = 30;

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

public class UnwatchFragment extends Fragment implements AdapterView.OnItemClickListener {

    public static UnwatchFragment newInstance() {
        UnwatchFragment fragment = new UnwatchFragment();
        return fragment;
    }

From source file de.tobiasbielefeld.solitaire.ui.manual.Manual.java

/**
 * Manual Activity: Uses some fragments to show the manual pages.
 * <p>
 * Phones use a navigation drawer, and tablets (devices with xlarge displays) uses an another layout
 * with a listView instead the drawer. Therefore i have to distinguish between drawer and listView
 * for the actions.