android.widget.ArrayAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.widget;
public class ArrayAdapter
extends android.widget.BaseAdapter
implements android.widget.Filterable
{
public ArrayAdapter(android.content.Context context, int textViewResourceId) { throw new RuntimeException("Stub!"); }
public ArrayAdapter(android.content.Context context, int resource, int textViewResourceId) { throw new RuntimeException("Stub!"); }
public ArrayAdapter(android.content.Context context, int textViewResourceId, T[] objects) { throw new RuntimeException("Stub!"); }
public ArrayAdapter(android.content.Context context, int resource, int textViewResourceId, T[] objects) { throw new RuntimeException("Stub!"); }
public ArrayAdapter(android.content.Context context, int textViewResourceId, java.util.List objects) { throw new RuntimeException("Stub!"); }
public ArrayAdapter(android.content.Context context, int resource, int textViewResourceId, java.util.List objects) { throw new RuntimeException("Stub!"); }
public void add(T object) { throw new RuntimeException("Stub!"); }
public void addAll(java.util.Collection extends T> collection) { throw new RuntimeException("Stub!"); }
public void addAll(T... items) { throw new RuntimeException("Stub!"); }
public void insert(T object, int index) { throw new RuntimeException("Stub!"); }
public void remove(T object) { throw new RuntimeException("Stub!"); }
public void clear() { throw new RuntimeException("Stub!"); }
public void sort(java.util.Comparator super T> comparator) { throw new RuntimeException("Stub!"); }
public void notifyDataSetChanged() { throw new RuntimeException("Stub!"); }
public void setNotifyOnChange(boolean notifyOnChange) { throw new RuntimeException("Stub!"); }
public android.content.Context getContext() { throw new RuntimeException("Stub!"); }
public int getCount() { throw new RuntimeException("Stub!"); }
public T getItem(int position) { throw new RuntimeException("Stub!"); }
public int getPosition(T item) { throw new RuntimeException("Stub!"); }
public long getItemId(int position) { throw new RuntimeException("Stub!"); }
public android.view.View getView(int position, android.view.View convertView, android.view.ViewGroup parent) { throw new RuntimeException("Stub!"); }
public void setDropDownViewResource(int resource) { throw new RuntimeException("Stub!"); }
public android.view.View getDropDownView(int position, android.view.View convertView, android.view.ViewGroup parent) { throw new RuntimeException("Stub!"); }
public static android.widget.ArrayAdapter createFromResource(android.content.Context context, int textArrayResId, int textViewResId) { throw new RuntimeException("Stub!"); }
public android.widget.Filter getFilter() { throw new RuntimeException("Stub!"); }
}