Home | History | Annotate | Download | only in widget

Lines Matching refs:context

19 import android.content.Context;
45 * @param context The context where the ListView associated with this adapter is running
51 public ResourceCursorAdapter(Context context, int layout, Cursor c) {
52 super(context, c);
54 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
59 * {@link CursorAdapter#CursorAdapter(Context, Cursor, boolean)}; it is recommended
60 * you not use this, but instead {@link #ResourceCursorAdapter(Context, int, Cursor, int)}.
64 * @param context The context where the ListView associated with this adapter is running
73 public ResourceCursorAdapter(Context context, int layout, Cursor c, boolean autoRequery) {
74 super(context, c, autoRequery);
76 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
82 * @param context The context where the ListView associated with this adapter is running
88 * as per {@link CursorAdapter#CursorAdapter(Context, Cursor, int)}.
90 public ResourceCursorAdapter(Context context, int layout, Cursor c, int flags) {
91 super(context, c, flags);
93 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
99 * @see android.widget.CursorAdapter#newView(android.content.Context,
103 public View newView(Context context, Cursor cursor, ViewGroup parent) {
108 public View newDropDownView(Context context, Cursor cursor, ViewGroup parent) {