Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我写了简单的 MP3/WAV 播放器,我有几个按钮,比如播放、暂停或停止。我正在使用 MediaPlayer 库。我想停止音乐,但不是突然。我想要拒绝效果。使用停止按钮后,它应该将音量降低一秒钟(从 100% 到 10%)然后停止。有可能吗?怎么做?
我有一种停止音乐的标准方法:
public void stopSample(){ sample.stop() sample.relase(); }
执行以下步骤
setVolume()
stop()
你确实有类setVolume中的方法MediaPlayer。看这里
setVolume
MediaPlayer