Playlist Feed
Similar to channel feed, playlist feed is predefined but unlike channel feed, its order is deterministic. Video Feed will include videos in the same order that they were added and the recommendation engine plays no role here.
Example code snippet for Playlist Feed
<com.loopnow.fireworklibrary.views.VideoFeedView
android:id="@+id/integrated_videofeed"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:feedLayout="grid"
app:feedType="playlist"
app:channelId="specify your encoded channel id here"
app:playlistId="specify your encoded playlist id here"/>
Please refer to the Encoded IDs help article to learn about how to find your encoded channel ID and playlist ID
/**
* Programmatically
* sets the playlist
* @param playlistId valid playlsit id
* @param channelId valid channel id that playlist is associated with
*/
videoFeedView.setPlaylist(channelId, playlistId)
Last modified 1yr ago