mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2024-11-22 02:53:09 +01:00
fixed Bundle casting bug incurred during related videosdisplay
This commit is contained in:
parent
23e0196fcc
commit
2c11bd1889
@ -2,6 +2,8 @@ package org.schabi.newpipe;
|
|||||||
|
|
||||||
import android.graphics.Bitmap;
|
import android.graphics.Bitmap;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by Christian Schabesberger on 26.08.15.
|
* Created by Christian Schabesberger on 26.08.15.
|
||||||
*
|
*
|
||||||
@ -41,7 +43,7 @@ public class VideoInfo extends AbstractVideoInfo {
|
|||||||
public int dislike_count = -1;
|
public int dislike_count = -1;
|
||||||
public String average_rating = "";
|
public String average_rating = "";
|
||||||
public VideoPreviewInfo nextVideo = null;
|
public VideoPreviewInfo nextVideo = null;
|
||||||
public VideoPreviewInfo[] relatedVideos = null;
|
public List<VideoPreviewInfo> relatedVideos = null;
|
||||||
public int startPosition = -1;//in seconds. some metadata is not passed using a VideoInfo object!
|
public int startPosition = -1;//in seconds. some metadata is not passed using a VideoInfo object!
|
||||||
|
|
||||||
public static final int VIDEO_AVAILABLE = 0x00;
|
public static final int VIDEO_AVAILABLE = 0x00;
|
||||||
|
@ -32,6 +32,7 @@ import android.view.MenuItem;
|
|||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.text.DateFormat;
|
import java.text.DateFormat;
|
||||||
import java.text.NumberFormat;
|
import java.text.NumberFormat;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
@ -394,7 +395,12 @@ public class VideoItemDetailFragment extends Fragment {
|
|||||||
@Override
|
@Override
|
||||||
public void onClick(View v) {
|
public void onClick(View v) {
|
||||||
Intent intent = new Intent(activity, VideoItemListActivity.class);
|
Intent intent = new Intent(activity, VideoItemListActivity.class);
|
||||||
intent.putExtra(VideoItemListActivity.VIDEO_INFO_ITEMS, currentVideoInfo.relatedVideos);
|
//todo: find more elegant way to do this - converting from List to ArrayList sucks
|
||||||
|
ArrayList<VideoPreviewInfo> toParcel = new ArrayList<>(currentVideoInfo.relatedVideos);
|
||||||
|
//why oh why does the parcelable array put method have to be so damn specific
|
||||||
|
// about the class of its argument?
|
||||||
|
//why not a List<? extends Parcelable>?
|
||||||
|
intent.putParcelableArrayListExtra(VideoItemListActivity.VIDEO_INFO_ITEMS, toParcel);
|
||||||
activity.startActivity(intent);
|
activity.startActivity(intent);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -421,7 +421,9 @@ public class YoutubeExtractor extends Extractor {
|
|||||||
relatedVideos.add(extractVideoPreviewInfo(li));
|
relatedVideos.add(extractVideoPreviewInfo(li));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
videoInfo.relatedVideos = relatedVideos.toArray(new VideoPreviewInfo[relatedVideos.size()]);
|
//todo: replace conversion
|
||||||
|
videoInfo.relatedVideos = relatedVideos;
|
||||||
|
//videoInfo.relatedVideos = relatedVideos.toArray(new VideoPreviewInfo[relatedVideos.size()]);
|
||||||
return videoInfo;
|
return videoInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user