Android 语音声波控件 条形波控件

2023-12-16 02:59

本文主要是介绍Android 语音声波控件 条形波控件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

许久不来 , 冒个泡 , 发一个刚做的声音波动的View吧
代码不多 , 没什么技术含量 , 权当给您省时间了 , 直接复制粘贴就能用 , 直接上代码:
对了..使用的时候父控件设置一下 android:clipChildren="false"

这里写图片描述

SoundWavesView

/*** 语音通话的声波控件* Created by Mr.LongFace on 2017/9/16.*/
public class SoundWavesView extends View {private int mMini; // 最短值private int mMax; // 最大值private int mLineWidth; // 每条声波的宽度private int mSoundNum = 5; // 声波的数量private int mSpac; // 每条声波的中点private int mWidth , mHeight; // 控件宽高private boolean isRun = false;private Paint mPaint;private RectF mRectF;private List<SoundLine> mSoundList = new ArrayList<>();private Handler mHandler = new Handler();private Runnable mInvalidateRun = new Runnable() {@Overridepublic void run() {postInvalidate();}};public SoundWavesView(Context context, @Nullable AttributeSet attrs) {super(context, attrs);mPaint = new Paint();mPaint.setAntiAlias(true);mPaint.setColor(getResources().getColor(R.color.color_red));mPaint.setStyle(Paint.Style.FILL);mRectF = new RectF();}@Overrideprotected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {super.onMeasure(widthMeasureSpec, heightMeasureSpec);if (widthMeasureSpec > 0 && heightMeasureSpec > 0) {initParam();}}private void initParam() {mWidth = getWidth();mHeight = getHeight();mMini = (int) (mHeight * 0.3f);mMax = mHeight;initLines();}@Overrideprotected void onDraw(Canvas canvas) {super.onDraw(canvas);for (int i = 0; i < mSoundNum; i++) {SoundLine sound = mSoundList.get(i);mRectF.left = sound.left;mRectF.right = sound.right;mRectF.top = sound.top;mRectF.bottom = sound.bottom;canvas.drawRoundRect(mRectF , mLineWidth / 2 , mLineWidth / 2 , mPaint);}if (isRun) {mHandler.postDelayed(mInvalidateRun, 10);}}@Overrideprotected void onVisibilityChanged(@NonNull View changedView, int visibility) {super.onVisibilityChanged(changedView, visibility);if (isRun) {if (visibility == VISIBLE) {if (mWidth == 0) {initParam();}if (mSoundList != null && mSoundList.size() > 0) {for (SoundLine soundLine : mSoundList) {soundLine.start();}}}else{if (mSoundList != null && mSoundList.size() > 0) {for (SoundLine soundLine : mSoundList) {soundLine.stop();}}}}}public void start() {if (!isRun) {isRun = true;for (SoundLine sound : mSoundList) {sound.start();}postInvalidate();}}public void stop(){if (isRun) {isRun = false;for (SoundLine sound : mSoundList) {sound.stop();}}}private void initLines() {mLineWidth = (int) (mWidth / mSoundNum * 0.7f);mSpac = mWidth / (mSoundNum - 1);mSoundList.clear();chaos();}/*** 生成凌乱的*/private void chaos() {for (int i = 0; i < mSoundNum; i++) {int left = i * mSpac - mLineWidth / 2;int right = i * mSpac + mLineWidth / 2;SoundLine s = new SoundLine(left , right , 0 , mHeight);s.setMode(SoundLine.SPEED_RAN);s.setBorder(mMini , mMax);mSoundList.add(s);}}/*** 生成波浪的*/private void wave(){// TODO 防止UI抽风}/*** 生成有序的*/private void order(){// TODO 防止UI抽风}
}

SoundLine

/*** 语音音频波纹的单个音波属性* Created by Mr.LongFace on 2017/9/16.*/
public class SoundLine implements ValueAnimator.AnimatorUpdateListener{// 低 中 高 随机 4挡public static final int SPEED_LOW = 500;public static final int SPEED_MID = 200;public static final int SPEED_HEI = 0;public static final int SPEED_RAN = 0;private Random mRandom;private ValueAnimator mAnim;public int left , right , top , bottom;private int min , max;public SoundLine(int left , int right , int top , int bottom){this.left = left;this.right = right;this.top = top;this.bottom = bottom;mRandom = new Random();initAnim();}private void initAnim() {mAnim = ValueAnimator.ofFloat(0.0f , 1.0f);setMode(SPEED_MID);mAnim.setRepeatCount(-1);mAnim.setRepeatMode(ValueAnimator.REVERSE);mAnim.addUpdateListener(this);}public void setMode(int mode){if (mode == SPEED_RAN) {mode = mRandom.nextInt(400);}mAnim.setDuration(300 + mode);}public void start(){if (mAnim.isRunning()){mAnim.end();}mAnim.start();}@Overridepublic void onAnimationUpdate(ValueAnimator valueAnimator) {float f = (float) valueAnimator.getAnimatedValue();top = (int) (f * (max - min) / 2);bottom = max - top;}public void setBorder(int min, int max) {this.min = min;this.max = max;}public void stop() {mAnim.end();mAnim.cancel();}
}

这篇关于Android 语音声波控件 条形波控件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

阿里开源语音识别SenseVoiceWindows环境部署

SenseVoice介绍 SenseVoice 专注于高精度多语言语音识别、情感辨识和音频事件检测多语言识别: 采用超过 40 万小时数据训练,支持超过 50 种语言,识别效果上优于 Whisper 模型。富文本识别:具备优秀的情感识别,能够在测试数据上达到和超过目前最佳情感识别模型的效果。支持声音事件检测能力,支持音乐、掌声、笑声、哭声、咳嗽、喷嚏等多种常见人机交互事件进行检测。高效推

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

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

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

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中的列表和滚动

AI(文生语音)-TTS 技术线路探索学习:从拼接式参数化方法到Tacotron端到端输出

AI(文生语音)-TTS 技术线路探索学习:从拼接式参数化方法到Tacotron端到端输出 在数字化时代,文本到语音(Text-to-Speech, TTS)技术已成为人机交互的关键桥梁,无论是为视障人士提供辅助阅读,还是为智能助手注入声音的灵魂,TTS 技术都扮演着至关重要的角色。从最初的拼接式方法到参数化技术,再到现今的深度学习解决方案,TTS 技术经历了一段长足的进步。这篇文章将带您穿越时

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版本以后的建议使