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.vmihalachi.turboeditor.activity.SelectFileActivity.java

public class SelectFileActivity extends Activity
        implements AdapterView.OnItemClickListener, EditDialogFragment.EditDialogListener {
    private static final String TAG = "A0A";
    private String currentFolder;
    private ListView listView;
    private boolean wantAFile, wantAFolder;

From source file me.zhang.accountbook.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.deange.textfaker.ui.activity.ConversationActivity.java

public class ConversationActivity extends FragmentActivity implements LoaderManager.LoaderCallbacks<Cursor>,
        ConversationPersonDialog.Callback, OrmInsertTask.Callback, AdapterView.OnItemClickListener,
        AdapterView.OnItemLongClickListener, ConfirmDeleteDialog.Callback, OrmDeleteTask.Callback {

    private ConversationListAdapter mAdapter;
    private ListView mListView;

From source file com.klinker.android.twitter.listeners.InteractionClickListener.java

public class InteractionClickListener implements AdapterView.OnItemClickListener {

    private Context context;
    private NotificationDrawerLayout drawer;
    private ViewPager viewPager;
    private int extraPages = 0;

From source file de.anycook.einkaufszettel.activities.MainActivity.java

/**
 * @author Jan Graegger <jan@anycook.de>
 * @author Claudia Sichting
 */
public class MainActivity extends ActionBarActivity implements AdapterView.OnItemClickListener {

From source file com.wahyuadityanugraha.mvpexample.app.finditems.FeedActivity.java

public class FeedActivity extends Activity implements FeedFunction, AdapterView.OnItemClickListener,
        AbsListView.OnScrollListener, SwipeRefreshLayout.OnRefreshListener {

    private ListView listView;
    private ProgressBar progressBar;
    private SwipeRefreshLayout swipeContainer;

From source file com.android.activity.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 at.bitfire.nophonespam.BlacklistActivity.java

public class BlacklistActivity extends AppCompatActivity
        implements LoaderManager.LoaderCallbacks<Set<Number>>, AdapterView.OnItemClickListener {

    protected Settings settings;

    ListView list;

From source file com.google.android.demos.atom.app.FeedActivity.java

/**
 * A feed activity loads and displays a list of items in an Atom feed.
 * <p>
 * Feed entries are displayed in a dialog managed by the feed for efficiency.
 */
public class FeedActivity extends FragmentActivity

From source file net.peterkuterna.android.apps.devoxxsched.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