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.daiv.android.twitter.listeners.MainDrawerClickListener.java

public class MainDrawerClickListener implements AdapterView.OnItemClickListener {

    private Context context;
    private NotificationDrawerLayout drawer;
    private ViewPager viewPager;
    private boolean noWait;

From source file com.juanjofp.curso.gplussample.ListMomentsActivity.java

/**
 * Example of listing the current user's moments through PlusClient.
 */
public class ListMomentsActivity extends FragmentActivity implements PlusClientFragment.OnSignedInListener,
        PlusClient.OnMomentsLoadedListener, AdapterView.OnItemClickListener {
    private static final String TAG = MomentActivity.class.getSimpleName();

From source file de.stadtrallye.rallyesoft.fragments.AssistantGroupsFragment.java

/**
 * Page of ConnectionAssistant: choose a group to login to
 * If the Assistant already knows the group, highlight it
 */
public class AssistantGroupsFragment extends ListFragment
        implements IServer.IServerListener, AdapterView.OnItemClickListener {

From source file br.com.PartoHumanizado.fragment.base.ResStringArrayListFragment.java

/**
 * Created by bruno on 04/12/14.
 */
public abstract class ResStringArrayListFragment extends BaseListFragment
        implements AdapterView.OnItemClickListener {
    private static final String TAG = "ResStringArrayListFragment";

From source file com.google.firebase.samples.apps.mlkit.java.ChooserActivity.java

/**
 * Demo app chooser which takes care of runtime permission requesting and allows you to pick from
 * all available testing Activities.
 */
public final class ChooserActivity extends AppCompatActivity
        implements OnRequestPermissionsResultCallback, AdapterView.OnItemClickListener {

From source file com.example.android.ennis.barrett.popularmovies.MainFragment.java

public class MainFragment extends Fragment implements AdapterView.OnItemClickListener,
        LoaderManager.LoaderCallbacks<Cursor>, SharedPreferences.OnSharedPreferenceChangeListener {

    private static final String TAG = "popularmovies " + MainFragment.class.getSimpleName();
    private GridAdapter mAdapter;
    private static final String LOADER_BUNDLE_KEY = "thebundlekeys";

From source file com.maxleap.mall.fragments.ShopFragment.java

public class ShopFragment extends Fragment implements AdapterView.OnItemClickListener {
    private Context mContext;
    private ArrayList<ProductData> mProductDatas;
    private ShopProductAdapter mAdapter;
    private TextView mTotalPayView;
    private MainActivity mainActivity;

From source file bus_vn.gena.bus_vn.com.bus_vn.tabs.Tab_list_bus_stop.java

public class Tab_list_bus_stop extends Fragment implements AdapterView.OnItemClickListener {
    private String busPathId;
    private String typeDay;
    ArrayList<String> results = new ArrayList<String>();

    public Tab_list_bus_stop(String busPathId, String typeDay) {

From source file com.zion.htf.ui.ArtistListActivity.java

public class ArtistListActivity extends ActionBarActivity
        implements AdapterView.OnItemClickListener, LoaderManager.LoaderCallbacks<Cursor> {
    private static final int LISTVIEW_LOADER_ID = 5002;
    private ListView listView;
    private CursorAdapter adapter;

From source file com.seedform.dfatester.viewer.StateListFragment.java

public class StateListFragment extends Fragment
        implements AdapterView.OnItemClickListener, DeletableItemAdapter.OnDeleteCallback {

    private ArrayList<State> mStates;
    private DFA mDFA;
    private DeletableItemAdapter<State> mAdapter;