List of usage examples for android.widget ArrayAdapter subclass-usage
From source file com.normalexception.app.rx8club.view.pmitem.PMItemViewArrayAdapter.java
public class PMItemViewArrayAdapter extends ArrayAdapter<PMItemModel> { private List<PMItemModel> data; private OnClickListener _ocl; private Logger TAG = LogManager.getLogger(this.getClass()); /**
From source file trendoidtechnologies.com.navigationdrawerlibrary.adapter.DrawerAdapter.java
/** * Adapter to be used with {@link trendoidtechnologies.com.navigationdrawerlibrary.DrawerView} to display a list of drawer items. */ public class DrawerAdapter extends ArrayAdapter<DrawerItem> { private int selectedPosition = -1;
From source file com.lge.friendsCamera.CustomListAdapter.java
/**
* List adapter for CameraFileListViewActivity and DownloadFileListViewActivity
* Show thumbnail, file name and file size in row view
* Get thumbnail from android media storage or
* Get thumbnail from friends camera (by camera.getFile api)
*/
From source file ch.ethz.tik.hrouting.providers.PlacesAutoCompleteAdapter.java
public class PlacesAutoCompleteAdapter extends ArrayAdapter<SearchNode> implements Filterable { private static final double BOUNDS_NORTHEAST_LON = 8.610260422; private static final double BOUNDS_SOUTHWEST_LON = 8.464171646; private static final double BOUNDS_NORTHEAST_LAT = 47.43669326; private static final double BOUNDS_SOUTHWEST_LAT = 47.32839174;
From source file com.easemob.chatuidemo.adapter.NewFriendsMsgAdapter.java
public class NewFriendsMsgAdapter extends ArrayAdapter<InviteMessage> { private Context context; private InviteMessgeDao messgeDao; public NewFriendsMsgAdapter(Context context, int textViewResourceId, List<InviteMessage> objects) {
From source file de.arcus.playmusicexporter2.adapter.MusicTrackListAdapter.java
/** * Adapter for the music tracks */ public class MusicTrackListAdapter extends ArrayAdapter<MusicTrack> { /** * The context of the app
From source file com.normalexception.app.rx8club.view.profile.ProfileViewArrayAdapter.java
public class ProfileViewArrayAdapter extends ArrayAdapter<ProfileModel> { private Fragment sourceFragment; private List<ProfileModel> data; /** * A custom adapter that handles PM View objects
From source file com.todoroo.astrid.adapter.FilterAdapter.java
public class FilterAdapter extends ArrayAdapter<FilterListItem> { private static final int VIEW_TYPE_COUNT = FilterListItem.Type.values().length; // --- instance variables
From source file ee.ria.DigiDoc.adapter.DataFilesAdapter.java
public class DataFilesAdapter extends ArrayAdapter<DataFileFacade> { private ContainerFacade containerFacade; private ContainerDataFilesFragment containerDataFilesFragment; private NotificationUtil notificationUtil;
From source file fr.outadev.skinswitch.SkinsListAdapter.java
/** * ArrayAdapter for displaying the main skins list. * * @author outadoc */ public class SkinsListAdapter extends ArrayAdapter<BasicSkin> {