Example usage for android.widget ArrayAdapter subclass-usage

List of usage examples for android.widget ArrayAdapter subclass-usage

Introduction

In this page you can find the example usage for android.widget ArrayAdapter subclass-usage.

Usage

From source file com.meetingninja.csse.tasks.TasksFragment.java

class TaskItemAdapter extends ArrayAdapter<Task> {
    private List<Task> tasks;
    private Context context;

    public TaskItemAdapter(Context context, int textViewResourceId, List<Task> tasks) {
        super(context, textViewResourceId, tasks);

From source file de.jan.ledgerjournal.JournalActivity.java

class TransactionsAdapter extends ArrayAdapter<Transaction> {

    public TransactionsAdapter(Context context, ArrayList<Transaction> transactions) {
        super(context, 0, transactions);
    }

From source file com.bill.metrobus.FriendsList.java

class FriendListAdapter extends ArrayAdapter<UserEntity> {
    private final LayoutInflater mInflater;

    public FriendListAdapter(Context context) {
        super(context, android.R.layout.simple_list_item_2);
        mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

From source file com.sentaroh.android.TaskAutomation.ActivityTaskStatus.java

class AdapterTaskStatusActiveList extends ArrayAdapter<TaskStatusActiveTaskListItem> {
    private Context c;
    private int id;
    private ArrayList<TaskStatusActiveTaskListItem> items;

    public AdapterTaskStatusActiveList(Context context, int textViewResourceId,