zoukankan      html  css  js  c++  java
  • 设置和获取Android中各种音量

    通过程序获取android系统手机的铃声和音量。同样,设置铃声和音量的方法也很简单!

    AudioManager am = (AudioManager) getSystemService(Context.AUDIO_SERVICE);

    //通话音量

          int max = am.getStreamMaxVolume( AudioManager.STREAM_VOICE_CALL );

          int current = am.getStreamVolume( AudioManager.STREAM_VOICE_CALL );

          Log.d(”VIOCE_CALL”, “max : ” + max + ” current : ” + current);

    //系统音量

          max = mAudioManager.getStreamMaxVolume( AudioManager.STREAM_SYSTEM );

    current = mAudioManager.getStreamVolume( AudioManager.STREAM_SYSTEM );

          Log.d(”SYSTEM”, “max : ” + max + ” current : ” + current);

    //铃声音量

          max = mAudioManager.getStreamMaxVolume( AudioManager.STREAM_RING );

          current = mAudioManager.getStreamVolume( AudioManager.STREAM_RING );

          Log.d(”RING”, “max : ” + max + ” current : ” + current);

    //音乐音量

          max = mAudioManager.getStreamMaxVolume( AudioManager.STREAM_MUSIC );

          current = mAudioManager.getStreamVolume( AudioManager.STREAM_MUSIC );

          Log.d(”MUSIC”, “max : ” + max + ” current : ” + current);

    //提示声音音量

          max = am.getStreamMaxVolume( AudioManager.STREAM_ALARM );

          current = sm.getStreamVolume( AudioManager.STREAM_ALARM );

          Log.d(”ALARM”, “max : ” + max + ” current : ” + current);

    设置音量的方法也很简单,AudioManager提供了方法:
    public void setStreamVolume(int streamType, int index, int flags)
    其中 streamType 有内置的常量,可以在AudioManager里面查到相关的定义。

  • 相关阅读:
    PHP获取一周的日期
    关系型数据库和非关系型数据库的区别和特点
    关系型数据库和非关系型数据库的特性以及各自的优缺点
    什么是数据库?什么是关系数据库?什么是非关系型数据库?
    PHP中把对象转数组的几个方法
    验证银行卡号
    xss过滤方法
    PHP 随机字符
    计算两个日期相差年月日
    判断一个时间段是否包含周末
  • 原文地址:https://www.cnblogs.com/profession/p/3695907.html
Copyright © 2011-2022 走看看