Code Monkey home page Code Monkey logo

Comments (2)

rubinnellikunnathu avatar rubinnellikunnathu commented on May 24, 2024 3

I am Expecting something like this.

## Option 3: Initialize an playlist with a custom title for all

   ArrayList<String> urls = new ArrayList<>();
    urls.add("http://www.example.com.br/android/Music_01.mp3");
    urls.add("http://www.example.com.br/android/Music_02.mp3");

 ArrayList<String> titles = new ArrayList<>();
    titles.add("ABC Song");
    titles.add("BCD Song");

    jcplayerView.initWithTitlePlaylist(urls, titles);

OR

Is their any way to get the current position , So that i can set the title by calling titles.get(position)

ArrayList<String> urls = new ArrayList<>();
    urls.add("http://www.example.com.br/android/Music_01.mp3");
    urls.add("http://www.example.com.br/android/Music_02.mp3");

 ArrayList<String> titles = new ArrayList<>();
   titles.add("ABC Song");
   titles.add("BCD Song");


    jcplayerView.initWithTitlePlaylist(urls, titles.get(position);

from jcplayer.

jeancsanchez avatar jeancsanchez commented on May 24, 2024 3

Hello friend :D

You can use a List of JcAudio objects. For example:

List<JcAudio> audios  = new ArrayList<>();
audios.add(new JcAudio("http://www.example.com.br/Music_01.mp3", "My title 1"));
audios.add(new JcAudio("http://www.example.com.br/Music_02.mp3", "My title 2"));

player.initPlaylist(audios);

So, you implement your onClick function parsing a JcAudio with parameter and play it:

public void onClick(JcAudio jcAudio){
    player.playAudio(jcAudio);
}

from jcplayer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.