Android中MediaPlayer类的setVolume方法参数的范围

本文详细解析MediaPlayer类的setVolume方法,对比其与SoundPool的setVolume方法参数范围,并提供测试验证结果。重点突出参数的有效范围为0.0到1.0,适合在应用程序中平衡音频流输出。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

不知到为什么在开发文档中并没有注明MediaPlayer类的setVolume方法的参数的范围

 
  
public void setVolume ( float leftVolume, float rightVolume)

Since: API Level
1
Sets the volume on
this player. This API is recommended for balancing the output of audio streams within an application. Unless you are writing an application to control user settings, this API should be used in preference to setStreamVolume( int , int , int ) which sets the volume of ALL streams of a particular type. Note that the passed volume values are raw scalars. UI controls should be scaled logarithmically.
Parameters

leftVolume left volume scalar
rightVolume right volume scalar

网友们的说法也是很多不同版本,不过经过测试发现和SoundPool的setVolume方法的参数的范围是一样的,也是0.0到1.0

 
  
public final void setVolume ( int streamID, float leftVolume, float rightVolume)

Since: API Level
1
Set stream volume. Sets the volume on the stream specified by the streamID. This is the value returned by the play() function. The value must be in the range of
0.0 to 1.0 . If the stream does not exist, it will have no effect.
Parameters

streamID a streamID returned by the play() function
leftVolume left volume value (range
= 0.0 to 1.0 )
rightVolume right volume value (range
= 0.0 to 1.0 )

一般使用这个100个就行了

 
  
1 for ( float i = 0.01F ; i <= 1.00F ; i += 0.01F ) {
2 System.out.println( new DecimalFormat( " #.## " ).format(i));
3 }

转载于:https://www.cnblogs.com/andlife/archive/2011/06/28/2092035.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值