Package huu.phong.musiconline.model.nhaccuatui

Examples of huu.phong.musiconline.model.nhaccuatui.NhacCuaTuiLyricList


  }

  public List<String> getLyric(ISong song) throws IOException {
    InputStream in = getInputStream(URLProvider.getLyris(song.getId()));
    String response = Utils.streamToString(in);
    NhacCuaTuiLyricList lyricList = gson.fromJson(response, NhacCuaTuiLyricList.class);
    return lyricList.lyric.getLyric();
  }
View Full Code Here

TOP

Related Classes of huu.phong.musiconline.model.nhaccuatui.NhacCuaTuiLyricList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.