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.goliathonline.android.kegbot.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.acdd.homelauncher.fragment.DelayAppFragment.java

/**
 * A fragment representing a list of Items.
 * <p/>
 * <p/>
 * Activities containing this fragment MUST implement the {@link OnFragmentInteractionListener}
 * interface.

From source file com.acdd.homelauncher.fragment.StoredAppFragment.java

/**
 * A fragment representing a list of Items.
 * <p/>
 * <p/>
 * Activities containing this fragment MUST implement the {@link OnFragmentInteractionListener}
 * interface.

From source file com.google.devrel.samples.memedroid.app.CreateActivity.java

/**
 * Activity to provide the UI for creating a new Meme. Returns the meme
 * details as the activity response.
 */
public class CreateActivity extends FragmentActivity
        implements LoaderManager.LoaderCallbacks<List<CloudMemeTemplate>>, TextWatcher,

From source file com.school.mailclient.app.fragment.SentFragment.java

public class SentFragment extends Fragment
        implements AdapterView.OnItemLongClickListener, AbsListView.MultiChoiceModeListener, View.OnClickListener,
        AdapterView.OnItemClickListener, SwipeRefreshLayout.OnRefreshListener {

    private ListView sentList = null;
    public static final String ARG_SECTION_NUMBER = "section_number";

From source file com.easemob.chatuidemo.activity.AddContactActivity.java

public class AddContactActivity extends BaseActivity implements AdapterView.OnItemClickListener {
    private EditText editText;
    //   private LinearLayout searchedUserLayout;
    private TextView nameText, mTextView;
    /*private Button searchBtn;
    private ImageView avatar;

From source file com.school.mailclient.app.fragment.InboxFragment.java

public class InboxFragment extends Fragment
        implements AdapterView.OnItemLongClickListener, AbsListView.MultiChoiceModeListener, View.OnClickListener,
        AdapterView.OnItemClickListener, SwipeRefreshLayout.OnRefreshListener {

    private ListView inboxList = null;
    public static final String ARG_SECTION_NUMBER = "section_number";

From source file com.mobimvp.cliques.ui.fragment.ShotsFragment.java

public class ShotsFragment extends BaseFragment implements AdapterView.OnItemClickListener {
    private static final String TAG = makeLogTag(ShotsFragment.class);
    public static final String POPULAR = "comments";
    public static final String RECENT = "recent";
    public static final String VIEWS = "views";
    private String sort;

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

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

    private static final int LOADER_LIST = 1;

    protected SimpleFeedAdapter mAdapter;

From source file de.schramke.android.navdrawer.NavigationDrawer.java

/**
 * Created by bschramke on 05.02.14.
 */
public class NavigationDrawer implements AdapterView.OnItemClickListener, AdapterView.OnItemLongClickListener,
        AdapterView.OnItemSelectedListener, DrawerLayout.DrawerListener {