Home | History | Annotate | Download | only in widget

Lines Matching defs:ArrayAdapter

47 public class ArrayAdapter<T> extends BaseAdapter implements Filterable {
49 * Contains the list of objects that represent the data of this ArrayAdapter.
103 public ArrayAdapter(Context context, int resource) {
115 public ArrayAdapter(Context context, int resource, int textViewResourceId) {
127 public ArrayAdapter(Context context, int resource, T[] objects) {
140 public ArrayAdapter(Context context, int resource, int textViewResourceId, T[] objects) {
152 public ArrayAdapter(Context context, int resource, List<T> objects) {
165 public ArrayAdapter(Context context, int resource, int textViewResourceId, List<T> objects) {
385 Log.e("ArrayAdapter", "You must supply a resource ID for a TextView");
387 "ArrayAdapter requires the resource ID to be a TextView", e);
419 * Creates a new ArrayAdapter from external resources. The content of the array is
426 * @return An ArrayAdapter<CharSequence>.
428 public static ArrayAdapter<CharSequence> createFromResource(Context context,
431 return new ArrayAdapter<CharSequence>(context, textViewResId, strings);