使用【AudioManager】类控制音量

一个好的 Android 应用免不了会自带背景音乐,比如游戏或者一款比较不错的书本阅读器。一些好的应用在自带音乐的时候会多添加一款小功能即可以帮助用户设置声音大小或者改变应用的声音模式。

本篇基于 Android API 中的 AudioManager 作讲述,使看过本篇的读者可以迅速的掌握这个类的实现过程。下面是本篇大纲:

  • 1、认识 AudioManager
  • 2、AudioManager 主要方法介绍
  • 3、程序逻辑实现过程

1、认识 AudioManager

AudioManager 类位于 android.Media 包中,该类提供访问控制音量和钤声模式的操作。

 

2、AudioManager 主要方法介绍

邮于 AudioManager 该类方法过多,这里只讲述几个比较常用到的方法:

  • 方法:adjustVolume(int direction, int flags) 
    解释:这个方法用来控制手机音量大小,当传入的第一个参数为 AudioManager.ADJUST_LOWER 时,可将音量调小一个单位,传入 AudioManager.ADJUST_RAISE 时,则可以将音量调大一个单位。
  • 方法:getMode() 
    解释:返回当前音频模式。
  • 方法:getRingerMode() 
    解释:返回当前的铃声模式。
  • 方法:getStreamVolume(int streamType) 
    解释:取得当前手机的音量,最大值为7,最小值为0,当为0时,手机自动将模式调整为“震动模式”。
  • 方法:setRingerMode(int ringerMode) 
    解释:改变铃声模式

 

3、程序逻辑实现过程

界面上设置了一个图片,表示当前铃声状态,一个进度条表示当前音量大小,五个图片按钮,用来表示增加/减小音量、普通模式、静音模式和震动模式。下面是界面的 XML 布局代码:

 

复制代码
<? xml version="1.0" encoding="utf-8" ?>
< AbsoluteLayout
  
android:id ="@+id/layout1"
  android:layout_width
="fill_parent"
  android:layout_height
="fill_parent"
  android:background
="@drawable/white"
  xmlns:android
="http://schemas.android.com/apk/res/android"
>
  
< TextView
    
android:id ="@+id/myText1"
    android:layout_width
="wrap_content"
    android:layout_height
="wrap_content"
    android:text
="@string/str_text1"
    android:textSize
="16sp"
    android:textColor
="@drawable/black"
    android:layout_x
="20px"
    android:layout_y
="42px"
  
>
  
</ TextView >
  
< ImageView
    
android:id ="@+id/myImage"
    android:layout_width
="48px"
    android:layout_height
="48px"
    android:layout_x
="110px"
    android:layout_y
="32px"
  
>
  
</ ImageView >
  
< TextView
    
android:id ="@+id/myText2"
    android:layout_width
="wrap_content"
    android:layout_height
="wrap_content"
    android:text
="@string/str_text2"
    android:textSize
="16sp"
    android:textColor
="@drawable/black"
    android:layout_x
="20px"
    android:layout_y
="102px"
  
>
  
</ TextView >
  
< ProgressBar
    
android:id ="@+id/myProgress"
    style
="?android:attr/progressBarStyleHorizontal"
    android:layout_width
="160dip"
    android:layout_height
="wrap_content"
    android:max
="7"
    android:progress
="5"
    android:layout_x
="110px"
    android:layout_y
="102px"
  
>
  
</ ProgressBar >
  
< ImageButton
    
android:id ="@+id/downButton"
    android:layout_width
="100px"
    android:layout_height
="100px"
    android:layout_x
="50px"
    android:layout_y
="162px"
    android:src
="@drawable/down"
  
>
  
</ ImageButton >
  
< ImageButton
    
android:id ="@+id/upButton"
    android:layout_width
="100px"
    android:layout_height
="100px"
    android:layout_x
="150px"
    android:layout_y
="162px"
    android:src
="@drawable/up"
  
>
  
</ ImageButton >
  
< ImageButton
    
android:id ="@+id/normalButton"
    android:layout_width
="60px"
    android:layout_height
="60px"
    android:layout_x
="50px"
    android:layout_y
="272px"
    android:src
="@drawable/normal"
  
>
  
</ ImageButton >
  
< ImageButton
    
android:id ="@+id/muteButton"
    android:layout_width
="60px"
    android:layout_height
="60px"
    android:layout_x
="120px"
    android:layout_y
="272px"
    android:src
="@drawable/mute"
  
>
  
</ ImageButton >
  
< ImageButton
    
android:id ="@+id/vibrateButton"
    android:layout_width
="60px"
    android:layout_height
="60px"
    android:layout_x
="190px"
    android:layout_y
="272px"
    android:src
="@drawable/vibrate"
  
>
  
</ ImageButton >
</ AbsoluteLayout >
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值