KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
LrcView
★ 63
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
Torch-Models
:
No description available.
apisan
:
APISan: Sanitizing API Usages through Semantic Cross-Checking
noisesocket
:
Noise socket implementation in Go
topic-definition
:
AsyncAPI topic structure definition
HelloCodeSchoolProject
:
Demonstration on how projects work at Code School.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
LrcView
?
Download (.md)
# LrcView # 一个关于音乐播放器歌词控件显示的自定义View ## 效果图如下:  ## 使用方式 > 1.下载该类库作为一个module引入到您的项目中 > 2.布局文件中添加控件 > 3.java代码中设置歌词并开启绘制 ### 代码举例--布局文件 ``` <org.sang.lrcview.LrcView android:id="@+id/lrc_view" android:layout_width="match_parent" app:lrcMode="KARAOKE" android:layout_height="match_parent"/> ``` **lrcMode表示歌词显示的模式,默认为普通模式,可以开启卡拉OK模式,另外也可以配置高亮歌词的颜色和普通歌词的颜色** ### 代码举例--Java代码 ``` lrcView.setLrc(lrcStr); lrcView.setPlayer(PlayUtil.player); lrcView.init(); ```