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.brkc.traffic.ui.image.ImageListFragment.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 if, for example, the user rotates the device.

From source file com.example.android.happydays.testgoogleimages.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 if, for example, the user rotates the device.

From source file com.dhl.android.bitmapfun.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.volley.demo.SimpleCacheFragment.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 com.google.android.demos.jamendo.app.AlbumGalleryActivity.java

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

    private static final int LOADER_ALBUMS = 1;

    private Gallery mGallery;

From source file com.google.android.demos.jamendo.app.ArtistGalleryActivity.java

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

    private static final int LOADER_ARTISTS = 1;

    private Gallery mGallery;

From source file com.sughimura.samplebitmaps.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 if, for example, the user rotates the device.

From source file com.meng.imageviewer.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 if, for example, the user rotates the device.

From source file net.primeranks.fs_viewer.fs_replay.EntryPointActivity.java

public class EntryPointActivity extends ListActivity implements AdapterView.OnItemClickListener {
    // Maintain a single HTTP client for the entire application
    private static final AbstractHttpClient httpClient;
    // Handle HTTP network failures
    private static final HttpRequestRetryHandler retryHandler;

From source file com.retroteam.studio.retrostudio.MainActivity.java

public class MainActivity extends AppCompatActivity implements AdapterView.OnItemClickListener {

    // Storage Permissions
    private static final int REQUEST_EXTERNAL_STORAGE = 1;
    private static String[] PERMISSIONS_STORAGE = { Manifest.permission.READ_EXTERNAL_STORAGE,
            Manifest.permission.WRITE_EXTERNAL_STORAGE };