public CurrentPlaylistAdapter(Context context, ArrayList<MusicInfo> list) { mContext = context; mList = list; mAsyncBitmapLoader = new AsyncBitmapLoader(context); mAsyncBitmapLoader.setBitmapLoadListener(this); }
public LoadPictureAdapter(Context context, Cursor c, boolean autoRequery) { super(context, c, autoRequery); mLayoutInflater = LayoutInflater.from(context); // 다이나믹 비트맵 로더 생성 및 이벤트 연결 mAsyncBitmapLoader = new AsyncBitmapLoader(context); mAsyncBitmapLoader.setBitmapLoadListener(this); }