I have some problems making a playlist from a list. the fact is that I always get just a song
i have the list from and xml file.
i have my variable ready with all the data (double checked)
i have the list from and xml file.
i have my variable ready with all the data (double checked)
B4X:
Dim playlist As List
Dim video_player As VideoView
Sub play_list
For i = 0 To playlist.Size
video_player.LoadVideo("http",playlist.Get(i))
video_player.Play
Next
End Sub
Sub video_player_Complete
Log("PLAYER COMPLETED FROM VIDEO MODULE")
End Sub