예제 #1
0
 public VideoAdapter(
     Context context,
     SwipeListView swipeListView,
     int videoType,
     int resource,
     ArrayList<ListItem> data,
     int tagCode) {
   super(context, resource, data);
   this.mContext = context;
   mImageLoader = MainActivity.getImageLoader();
   mTagCode = tagCode;
   mSwipeListView = swipeListView;
   mData = data;
   mVideoType = videoType;
 }
예제 #2
0
 public VideoAdapter(Context context, int resource, ArrayList<ListItem> data, int tagCode) {
   super(context, resource, data);
   mImageLoader = MainActivity.getImageLoader();
   mTagCode = tagCode;
 }