Example usage for android.widget AdapterView.OnItemSelectedListener interface-usage

List of usage examples for android.widget AdapterView.OnItemSelectedListener interface-usage

Introduction

In this page you can find the example usage for android.widget AdapterView.OnItemSelectedListener interface-usage.

Usage

From source file com.google.android.apps.gutenberg.EventSelectionFragment.java

public class EventSelectionFragment extends Fragment
        implements LoaderManager.LoaderCallbacks<Cursor>, AdapterView.OnItemSelectedListener {

    private static final int LOADER_EVENTS = 1;

    private Spinner mSpinner;

From source file wassilni.pl.navigationdrawersi.ui.Search.java

public class Search extends AppCompatActivity implements AdapterView.OnItemSelectedListener {
    public ArrayList<Driver> drivers = new ArrayList<Driver>();
    public ArrayList<schedule> schedules = new ArrayList<schedule>();
    public ArrayList<searchResult> searchResults = new ArrayList<searchResult>();
    ListView listView;
    int ids[];

From source file net.illusor.swipeplayer.fragments.FolderBrowserFragment.java

/**
 * Displays contents of music folder
 */
public class FolderBrowserFragment extends Fragment
        implements AdapterView.OnItemClickListener, AdapterView.OnItemSelectedListener {
    //region Factory

From source file com.ze.client.projecto.dialog.ProjectorDialog.java

public class ProjectorDialog extends DialogFragment implements AdapterView.OnItemSelectedListener {

    private static final String PROJECTOR_ID = "projector";
    private static final String TEXT_NAME = "name";
    private static final String TEXT_PORT = "port";
    private static final String TEXT_HOST = "host";

From source file it.dex.movingimageview.fragments.MovingTesterFragment.java

public class MovingTesterFragment extends Fragment
        implements CompoundButton.OnCheckedChangeListener, AdapterView.OnItemSelectedListener,
        DexMovingImageView.OnValueChanged, SeekBar.OnSeekBarChangeListener, Evaluator.OnEventOccurred {
    private DexMovingImageView dexMovingImageView;
    private TextView xValue, yValue, zValue, angleValue, eventOccurrences;
    private View commands;

From source file me.tylerbwong.pokebase.gui.fragments.MovesFragment.java

/**
 * @author Tyler Wong
 */
public class MovesFragment extends Fragment implements AdapterView.OnItemSelectedListener {
    @BindView(R.id.type_spinner)
    Spinner typeSpinner;

From source file uk.org.freeflight.wifefinder.MainActivity.java

public class MainActivity extends AppCompatActivity implements AdapterView.OnItemSelectedListener {

    final static int PERMISSION_REQUEST_LOCATION = 1;

    final static String AIRCRAFT_ID_PREF = "AIRCRAFT_ID";
    final static String LAT_PREF = "LAT_PREF";

From source file com.commonsware.android.contacts.spinners.ContactSpinners.java

public class ContactSpinners extends AbstractPermissionActivity
        implements LoaderManager.LoaderCallbacks<Cursor>, AdapterView.OnItemSelectedListener {
    private static final String[] PERMS = { Manifest.permission.READ_CONTACTS };
    private static final int LOADER_NAMES = 0;
    private static final int LOADER_NAMES_NUMBERS = 1;
    private static final String[] PROJECTION_NAMES = new String[] { ContactsContract.Contacts._ID,

From source file foam.littlej.android.app.ui.phone.ViewReportPhotoActivity.java

/**
 * @author eyedol
 */
public class ViewReportPhotoActivity extends BaseViewActivity<ReportPhotoView, ListPhotoModel>
        implements AdapterView.OnItemSelectedListener, ViewSwitcher.ViewFactory, View.OnTouchListener {

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 {