Examples of NhacCuaTuiAlbumList


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

  @Override
  public List<? extends IAlbum> searchAlbum(String value, int page, String filter) throws IOException {
    InputStream in = getInputStream(URLProvider.getSearchPlaylist(value, page, SONG_PER_PAGE));
    String response = Utils.streamToString(in);
    NhacCuaTuiAlbumList albumList = gson.fromJson(response, NhacCuaTuiAlbumList.class);
    return albumList.getAlbums();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.