android歌词显示

2024-06-23 06:18
文章标签 android 显示 歌词

本文主要是介绍android歌词显示,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本类继承于TextView,参考了其它的代码,经过测试调试,这个是基础的模型,有兴趣的同事可以在此基础上改善界面,不多说了,贴上代码:

public class LrcView extends TextView {// paint for line lrc (normal : current highlight : other)private Paint normal, highlight;// line distanceprivate static final int DY = 30;// middle of screen heightprivate float middleY;// middle of screen widthprivate float mX;// height of screenprivate float mY;// current lryc lineprivate int line = 0;// when lryc display thread start,it means whether lrc start or pause rollboolean startorpause = false;// lrcy display threadprivate Thread LrcViewThread;// update ui handlerprivate Handler LrcViewHandler;// update ui runnableprivate Runnable mRunnable;// lrcy display data constractpublic class LrcViewData {public long MilliSecond;public String LrcLine;}// lrcy display data listprivate List<LrcViewData> ListViewData;// constract functionpublic LrcView(Context context, AttributeSet attrs, int defStyle) {super(context, attrs, defStyle);// TODO Auto-generated constructor stubLrcViewInitData();}// constract functionpublic LrcView(Context context, AttributeSet attrs) {super(context, attrs);// TODO Auto-generated constructor stubLrcViewInitData();}// constract functionpublic LrcView(Context context) {super(context);// TODO Auto-generated constructor stubLrcViewInitData();}/*** dscript : init lryc display data contain pain(size, color, style) ,new a* data list, creat a safety method for update ui* * @author zhangdong* @param null* @return null* */private void LrcViewInitData() {ListViewData = new ArrayList<LrcViewData>();// normal paintnormal = new Paint();normal.setAntiAlias(true);normal.setTextSize(10);normal.setColor(getResources().getColor(R.color.white));normal.setTypeface(Typeface.SERIF);// highlighthighlight = new Paint();highlight.setAntiAlias(true);highlight.setColor(getResources().getColor(R.color.red));highlight.setTextSize(10);highlight.setTypeface(Typeface.SANS_SERIF);LrcViewThread = new Thread(new LrcViewDisplay());LrcViewThread.start();LrcViewHandler = new Handler();mRunnable = new Runnable() {@Overridepublic void run() {// TODO Auto-generated method stubinvalidate();}};}/*** After constracting, you must add data using this method, or display empty* * @author zhangdong* @param MilliSecond*            lryc line display time(ms)* @param lrcline*            lryc line display text* @return true:success; false:fail* */public boolean LrcViewAddData(long MilliSecond, String lrcline) {if (lrcline != null) {LrcViewData linedata = new LrcViewData();linedata.MilliSecond = MilliSecond;linedata.LrcLine = lrcline;ListViewData.add(linedata);return true;}return false;}/*** Using this method when you not sure lryc data list is right or wrong* * @author zhangdong* @param null* @return null* */public void LrcViewPrintList() {for (int i = 0; i < ListViewData.size(); i++) {LrcViewData linedata = (LrcViewData) ListViewData.get(i);System.out.println(">>>" + linedata.MilliSecond + ">>>>"+ linedata.LrcLine);}}/*** start display lryc when you want to* * @author CoCo.Dota* @param null* @return null* */public void LrcViewStart() {if (startorpause != true) {startorpause = true;}}/*** Pause display lryc when you want to* * @author zhangdong* @param null* @return null* */public void LrcViewPause() {if (startorpause != false) {startorpause = false;}}public void LrcViewReset() {if (startorpause != false) {startorpause = false;}line = 0;ListViewData.clear();}// Lryc Display Threadprivate class LrcViewDisplay implements Runnable {@Overridepublic void run() {// TODO Auto-generated method stub// remember previous line lryc time(ms)long time = 0;while (true) {if (startorpause == true) {if (!ListViewData.isEmpty()) {LrcViewData LineData = (LrcViewData) ListViewData.get(line);if (time >= LineData.MilliSecond) {// if time is up// update display current lineLrcViewHandler.post(mRunnable);// get next lineline++;} else {try {Thread.sleep(LineData.MilliSecond - time);// remember previous line lryc time(ms)time = LineData.MilliSecond;} catch (InterruptedException e) {// TODO Auto-generated catch blocke.printStackTrace();}}}} else {try {Thread.sleep(500);} catch (InterruptedException e) {// TODO Auto-generated catch blocke.printStackTrace();}}}}}protected void onSizeChanged(int w, int h, int ow, int oh) {super.onSizeChanged(w, h, ow, oh);mX = w * 0.5f; // remember the center of the screenmY = h;middleY = h * 0.5f;}protected void onDraw(Canvas canvas) {super.onDraw(canvas);Paint p = normal;Paint p2 = highlight;p.setTextAlign(Paint.Align.CENTER);p2.setTextAlign(Paint.Align.CENTER);LrcViewData lrcviewdata = (LrcViewData) ListViewData.get(line);String linelrc = lrcviewdata.LrcLine;float tempY = middleY;// draw current linecanvas.drawText(linelrc, mX, tempY, p2);// draw previours linesfor (int i = line - 1; i >= 0; i--) {tempY = tempY - DY;if (tempY < 0) {break;}lrcviewdata = (LrcViewData) ListViewData.get(i);linelrc = lrcviewdata.LrcLine;canvas.drawText(linelrc, mX, tempY, p);}tempY = middleY;// draw lines after current linefor (int i = line + 1; i < ListViewData.size(); i++) {tempY = tempY + DY;if (tempY > mY) {break;}lrcviewdata = (LrcViewData) ListViewData.get(i);linelrc = lrcviewdata.LrcLine;canvas.drawText(linelrc, mX, tempY, p);}}
}
很好理解,开辟一个和UI无关的线程,控制歌词显示的时间,到时通过handler的post更新UI界面,实现滚动显示歌词,但是歌词滚动不平滑。

本人android初学者,有错误还请大家多多指出^_^。

这篇关于android歌词显示的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1086365

相关文章

第10章 中断和动态时钟显示

第10章 中断和动态时钟显示 从本章开始,按照书籍的划分,第10章开始就进入保护模式(Protected Mode)部分了,感觉从这里开始难度突然就增加了。 书中介绍了为什么有中断(Interrupt)的设计,中断的几种方式:外部硬件中断、内部中断和软中断。通过中断做了一个会走的时钟和屏幕上输入字符的程序。 我自己理解中断的一些作用: 为了更好的利用处理器的性能。协同快速和慢速设备一起工作

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

安卓链接正常显示,ios#符被转义%23导致链接访问404

原因分析: url中含有特殊字符 中文未编码 都有可能导致URL转换失败,所以需要对url编码处理  如下: guard let allowUrl = webUrl.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) else {return} 后面发现当url中有#号时,会被误伤转义为%23,导致链接无法访问

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

android-opencv-jni

//------------------start opencv--------------------@Override public void onResume(){ super.onResume(); //通过OpenCV引擎服务加载并初始化OpenCV类库,所谓OpenCV引擎服务即是 //OpenCV_2.4.3.2_Manager_2.4_*.apk程序包,存

从状态管理到性能优化:全面解析 Android Compose

文章目录 引言一、Android Compose基本概念1.1 什么是Android Compose?1.2 Compose的优势1.3 如何在项目中使用Compose 二、Compose中的状态管理2.1 状态管理的重要性2.2 Compose中的状态和数据流2.3 使用State和MutableState处理状态2.4 通过ViewModel进行状态管理 三、Compose中的列表和滚动

Android 10.0 mtk平板camera2横屏预览旋转90度横屏拍照图片旋转90度功能实现

1.前言 在10.0的系统rom定制化开发中,在进行一些平板等默认横屏的设备开发的过程中,需要在进入camera2的 时候,默认预览图像也是需要横屏显示的,在上一篇已经实现了横屏预览功能,然后发现横屏预览后,拍照保存的图片 依然是竖屏的,所以说同样需要将图片也保存为横屏图标了,所以就需要看下mtk的camera2的相关横屏保存图片功能, 如何实现实现横屏保存图片功能 如图所示: 2.mtk

android应用中res目录说明

Android应用的res目录是一个特殊的项目,该项目里存放了Android应用所用的全部资源,包括图片、字符串、颜色、尺寸、样式等,类似于web开发中的public目录,js、css、image、style。。。。 Android按照约定,将不同的资源放在不同的文件夹中,这样可以方便的让AAPT(即Android Asset Packaging Tool , 在SDK的build-tools目

Android fill_parent、match_parent、wrap_content三者的作用及区别

这三个属性都是用来适应视图的水平或者垂直大小,以视图的内容或尺寸为基础的布局,比精确的指定视图的范围更加方便。 1、fill_parent 设置一个视图的布局为fill_parent将强制性的使视图扩展至它父元素的大小 2、match_parent 和fill_parent一样,从字面上的意思match_parent更贴切一些,于是从2.2开始,两个属性都可以使用,但2.3版本以后的建议使