LyricView
LyricView copied to clipboard
Recommendation
is there any solution to add typing effect on current play line?
同上(卡拉ok效果) 另有个bug:音频还没有播放时(多数有伴奏过渡),current就已经定位在第1行(声音开始时才应该定位)并有了颜色(如果设置了颜色)
ps:解析接口的文本歌词 LrcHelper.java //解析字符串歌词 public static List<Lrc> parseLrcFromString(String string) { try { return parseInputStream(new ByteArrayInputStream(string.getBytes())); } catch (Exception e) { e.printStackTrace(); } return null; }