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 geert.stef.sm.beheerautokm.Overview.java

public class Overview extends ActionBarActivity implements AdapterView.OnItemClickListener {
    Manager manager;
    private Car selectedCar = null;

    private ListView listView;
    private DrawerLayout drawerLayout;

From source file com.abs.telecam.gui.ControllerViewer.java

public class ControllerViewer extends Fragment implements AdapterView.OnItemClickListener {
    /**
     * The argument key for the page number this fragment represents.
     */
    public static final String ARG_PAGE = "page";

From source file de.elanev.studip.android.app.frontend.courses.CourseRecordingsFragment.java

/**
 * Fragment that loads the list of recordings for a specific course and displays it.
 *
 * @author Jrn
 */
public class CourseRecordingsFragment extends ProgressListFragment

From source file com.xabber.android.ui.activity.OccupantList.java

/**
 * Represent list of occupants in the room.
 *
 * @author alexander.ivanov
 */
public class OccupantList extends ManagedListActivity

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

public class InteractionClickListener implements AdapterView.OnItemClickListener {

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

From source file net.abcdroid.devfest12.ui.tablet.TracksDropdownFragment.java

/**
 * A tablet-specific fragment that emulates a giant {@link android.widget.Spinner}-like widget.
 * When touched, 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.odoo.news.News.java

public class News extends BaseFragment implements OCursorListAdapter.OnViewBindListener,
        LoaderManager.LoaderCallbacks<Cursor>, AdapterView.OnItemClickListener {
    public static final String TAG = News.class.getSimpleName();
    private OdooNews news = null;
    private View mView = null;
    private ListView mList = null;

From source file com.google.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.z299studio.pb.NavigationDrawerFragment.java

public class NavigationDrawerFragment extends Fragment implements AdapterView.OnItemClickListener {

    private final String SELECTION_KEY = "current_selection";

    public interface NavigationDrawerCallbacks {
        void onNavigationDrawerItemSelected(int type, int id);

From source file com.battlelancer.seriesguide.ui.BaseNavDrawerActivity.java

/**
 * Adds onto {@link BaseActivity} by attaching a navigation drawer.
 */
public abstract class BaseNavDrawerActivity extends BaseActivity implements AdapterView.OnItemClickListener {

    private static final String TAG_NAV_DRAWER = "Navigation Drawer";