List of usage examples for android.widget AdapterView.OnItemClickListener interface-usage
From source file com.example.android.wearable.timer.SetTimerActivity.java
/** This class sets a timer. */ public class SetTimerActivity extends Activity implements AdapterView.OnItemClickListener, GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener { public static final int NUMBER_OF_TIMES = 10; public static final String TAG = "SetTimerActivity";
From source file com.github.michalbednarski.intentslab.editor.NewExtraPickerDialog.java
/** * Created by mb on 21.08.13. */ public class NewExtraPickerDialog extends DialogFragment implements AdapterView.OnItemClickListener { /**
From source file com.zion.htf.ui.fragment.LineUpListFragment.java
public class LineUpListFragment extends Fragment implements AdapterView.OnItemClickListener, LoaderManager.LoaderCallbacks<Cursor> { private static final String TAG = "LineUpListFragment"; public static final String ARG_STAGE_NAME = "com.zion.htf.arg.stage_name"; private static int autoIncrement = 0; //FIXME: Find a better way than this hack (possible solution with Fragment#getId())
From source file imageUtils.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.ibox_ucsc.design.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 de.sourcestream.movieDB.controller.GalleryList.java
/** * This fragment is used in the gallery view. */ public class GalleryList extends Fragment implements AdapterView.OnItemClickListener { private MainActivity activity; private AbsListView listView;
From source file org.mifos.androidclient.main.AccountTransactionHistoryActivity.java
public class AccountTransactionHistoryActivity extends DownloaderActivity implements AdapterView.OnItemClickListener { private String mAccountNumber; private AccountService mAccountService; private TransactionHistoryTask mTransactionHistoryTask;
From source file com.vector.wemarried.android.utils.bitmapfun.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.hellosky.recyclingimageloader.ImageGridFragment.java
public class ImageGridFragment extends Fragment implements AdapterView.OnItemClickListener { private static final String TAG = "ImageGridFragment"; private ImageAdapter mAdapter; private ImageLoader mImageLoader; private int mImageThumbSize; private int mImageThumbSpacing;
From source file com.heneryh.aquanotes.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+.
*/