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 net.wespot.pim.controller.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.manning.androidhacks.hack040.ImageGridFragment.java

        mImageThumbSpacing = getResources().getDimensionPixelSize(R.dimen.image_thumbnail_spacing);

        mAdapter = new ImageAdapter(getActivity());

        ImageCacheParams cacheParams = new ImageCacheParams(IMAGE_CACHE_DIR);

From source file com.nachiket.titan.LibraryPagerAdapter.java

/**
 * PagerAdapter that manages the library media ListViews.
 */
public class LibraryPagerAdapter extends PagerAdapter implements Handler.Callback, ViewPager.OnPageChangeListener,
        View.OnCreateContextMenuListener, AdapterView.OnItemClickListener {
    /**

From source file com.nttec.everychan.ui.NewTabFragment.java

public class NewTabFragment extends Fragment implements AdapterView.OnItemClickListener, View.OnClickListener {
    private static final String TAG = "NewTabFragment";
    private static final int REQUEST_FILE = 500;

    private MainActivity activity;
    private Resources resources;

From source file com.jrummyapps.busybox.fragments.ScriptsFragment.java

public class ScriptsFragment extends RadiantSupportFragment
        implements AdapterView.OnItemClickListener, View.OnClickListener {

    public static final int REQUEST_CREATE_SCRIPT = 27;

    private FloatingActionButton fab;

From source file com.ute.bihapi.wydarzeniatekstowe.thirdScreenActivities.ContactsListFragment.java

/**
 * This fragment displays a list of contacts stored in the Contacts Provider. Each item in the list
 * shows the contact's thumbnail photo and display name. On devices with large screens, this
 * fragment's UI appears as part of a two-pane layout, along with the UI of
 * {@link ContactDetailFragment}. On smaller screens, this fragment's UI appears as a single pane.
 *

From source file name.marinchenko.lorryvision.activities.main.MainActivity.java

    public class MainActivity extends ToolbarAppCompatActivity
            implements NavigationView.OnNavigationItemSelectedListener, AdapterView.OnItemClickListener,
            AdapterView.OnItemLongClickListener {

        private NetlistAdapter netlistAdapter;
        private boolean lorriesDetected = false;

From source file com.actionbarsherlock.internal.view.menu.MenuPopupHelper.java

/**
 * Presents a menu as a small, simple popup anchored to another view.
 * @hide
 */
public class MenuPopupHelper
        implements AdapterView.OnItemClickListener, View.OnKeyListener, ViewTreeObserver.OnGlobalLayoutListener,

From source file com.nextgis.maplibui.dialog.NGWResourcesListAdapter.java

public class NGWResourcesListAdapter extends BaseAdapter implements AdapterView.OnItemClickListener {
    protected Connections mConnections;
    protected INGWResource mCurrentResource;
    protected Context mContext;
    protected boolean mLoading;
    protected boolean mShowAccounts = true;

From source file de.chaosdorf.meteroid.BookingActivity.java

abstract public class BookingActivity extends FragmentActivity
        implements LongRunningIOCallback, AdapterView.OnItemClickListener {
    private final DecimalFormat DECIMAL_FORMAT = new DecimalFormat("0.00 '\u20AC'");

    private final AtomicBoolean isBuying = new AtomicBoolean(true);
    private final AtomicReference<BuyableItem> buyingItem = new AtomicReference<BuyableItem>(null);