Android中解析lrc歌词

Android中解析lrc歌词

1.定义歌词实体类

import java.util.HashMap;   import java.util.Map;   /*    * 用于封装歌词的类    * @author    *     * */   public class LrcInfo {       private String title;//music title       private String artist;//artist name       private String album;//album name       private String bySomeBody;//the lrc maker       private String offset;//the time delay or bring forward       private Map<Long,String> infos;//保存歌词信息和时间点一一对应的Map       public String getTitle() {           return title;       }       public void setTitle(String title) {           this.title = title;       }       public String getArtist() {           return artist;       }       public void setArtist(String artist) {           this.artist = artist;       }       public String getAlbum() {           return album;       }       public void setAlbum(String album) {           this.album = album;       }       public String getBySomeBody() {           return bySomeBody;       }       public void setBySomeBody(String bySomeBody) {           this.bySomeBody = bySomeBody;       }       public String getOffset() {           return offset;       }       public void setOffset(String offset) {           this.offset = offset;       }       public Map<Long, String> getInfos() {           return infos;       }       public void setInfos(Map<Long, String> infos) {           this.infos = infos;       }          }  

2.定义解析类

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/pxfps.html