Home | History | Annotate | Download | only in widget

Lines Matching defs:Adapter

45         Adapter<String> adapter = new Adapter<String>(context, 0, items);
46 listView.setAdapter(adapter);
50 adapter.notifyDataSetChanged();
75 Adapter<String> adapter = new Adapter<String>(context, 0, items);
76 listView.setAdapter(adapter);
82 adapter.notifyDataSetChanged();
88 adapter.notifyDataSetChanged();
129 private class Adapter<T> extends ArrayAdapter<T> {
131 public Adapter(Context context, int resource, List<T> objects) {