我在我的应用程序中使用自定义音量条,这样当我从默认音量栏增加或减少时,我的自定义音量栏应该自动与默认值同步。请帮助我。谢谢。
答案 0 :(得分:0)
看看AudioManager课程。
此处提供的示例:https://github.com/commonsguy/cw-advandroid/tree/master/SystemServices/Volume/
没有人可以真正帮助你,而不是告诉你应该注意什么。特别是当你不包括代码时。
答案 1 :(得分:0)
我通过使用设备音量级别缩放我的值来完成。检查此方法。
private int setVolumeLevel(int actualvolume){
int maxVolume = mAudioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC);
int scalevalue = maxVolume/mMaxvolLevel;
int mapedVolLevel = (actualvolume * scalevalue);
return mapedVolLevel;
}