Hello
I'm working on a simple application with a listview and some mp3 files.
It works on some devices but trying to debug it on some other android devices it gives me an error here:
Sub ListView1_ItemClick(Position As Int, Value As Object)
mp.Stop
mp.Load(File.DirAssets, MP3List.Get(Position))
mp.Play
End Sub
I used a list called MP3List with the names of the mp3 files (es: "filename.mp3", "filename2.mp3")
I used "mp" as a media player
Thank you for support!