(1)程序说明

在android API的AudioManager中,提供了调节手机音量的办法。

audioMa.adjustVolume(AudioManager.ADJUST_LOWER, 0);
audioMa.adjustVolume(AudioManager.ADJUST_RAISE, 0);
也可以调节手机声音的模式为震动或者静音

audioMa.setRingerMode(AudioManager.RINGER_MODE_NORMAL);

audioMa.setRingerMode(AudioManager.RINGER_MODE_SILENT);

audioMa.setRingerMode(AudioManager.RINGER_MODE_VIBRATE);

(2)布局文件

<?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>

(3)代码:

package com.liuzuyi.soundmode;import android.app.Activity;import android.content.Context;import android.media.AudioManager;import android.os.Bundle;import android.view.Menu;import android.view.MenuItem;import android.view.View;import android.view.View.OnClickListener;import android.widget.ImageButton;import android.widget.ImageView;import android.widget.ProgressBar;public class MainActivity extends Activity { private ImageView myimage; private ImageButton downbutton; private ImageButton upbutton; private ImageButton normalbutton; private ImageButton mutebutton; private ImageButton vibratebutton; private ProgressBar myprogress; private AudioManager audioMa; private int volume; protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);audioMa =(AudioManager)getSystemService(Context.AUDIO_SERVICE);myimage = (ImageView)findViewById(R.id.myImage);myprogress =(ProgressBar)findViewById(R.id.myProgress);downbutton =(ImageButton)findViewById(R.id.downButton);upbutton =(ImageButton)findViewById(R.id.upButton);normalbutton=(ImageButton)findViewById(R.id.normalButton);mutebutton=(ImageButton)findViewById(R.id.muteButton);vibratebutton=(ImageButton)findViewById(R.id.vibrateButton);volume =audioMa.getStreamVolume(AudioManager.STREAM_RING);myprogress.setProgress(volume);int mode =audioMa.getRingerMode();if(mode == AudioManager.RINGER_MODE_NORMAL ){myimage.setImageDrawable(getResources().getDrawable(R.drawable.normal));}else if(mode == AudioManager.RINGER_MODE_SILENT){myimage.setImageDrawable(getResources().getDrawable(R.drawable.mute));}else if(mode == AudioManager.RINGER_MODE_VIBRATE){myimage.setImageDrawable(getResources().getDrawable(R.drawable.vibrate));}downbutton.setOnClickListener( new OnClickListener() {public void onClick(View v) {audioMa.adjustVolume(AudioManager.ADJUST_LOWER, 0);volume = audioMa.getStreamVolume(AudioManager.STREAM_RING);myprogress.setProgress(volume);int mode =audioMa.getRingerMode();if(mode == AudioManager.RINGER_MODE_NORMAL ){myimage.setImageDrawable(getResources().getDrawable(R.drawable.normal));}else if(mode == AudioManager.RINGER_MODE_SILENT){myimage.setImageDrawable(getResources().getDrawable(R.drawable.mute));}else if(mode == AudioManager.RINGER_MODE_VIBRATE){myimage.setImageDrawable(getResources().getDrawable(R.drawable.vibrate));}}});upbutton.setOnClickListener( new OnClickListener() {public void onClick(View v) {audioMa.adjustVolume(AudioManager.ADJUST_RAISE, 0);volume = audioMa.getStreamVolume(AudioManager.STREAM_RING);myprogress.setProgress(volume);int mode =audioMa.getRingerMode();if(mode == AudioManager.RINGER_MODE_NORMAL ){myimage.setImageDrawable(getResources().getDrawable(R.drawable.normal));}else if(mode == AudioManager.RINGER_MODE_SILENT){myimage.setImageDrawable(getResources().getDrawable(R.drawable.mute));}else if(mode == AudioManager.RINGER_MODE_VIBRATE){myimage.setImageDrawable(getResources().getDrawable(R.drawable.vibrate));}}});normalbutton.setOnClickListener( new OnClickListener() {public void onClick(View v) {audioMa.setRingerMode(AudioManager.RINGER_MODE_NORMAL);    volume = audioMa.getStreamVolume(AudioManager.STREAM_RING);    myprogress.setProgress(volume);myimage.setImageDrawable(getResources().getDrawable(R.drawable.normal));}});mutebutton.setOnClickListener( new OnClickListener() {public void onClick(View v) {audioMa.setRingerMode(AudioManager.RINGER_MODE_SILENT);    volume = audioMa.getStreamVolume(AudioManager.STREAM_RING);    myprogress.setProgress(volume);myimage.setImageDrawable(getResources().getDrawable(R.drawable.mute));}});vibratebutton.setOnClickListener( new OnClickListener() {public void onClick(View v) {audioMa.setRingerMode(AudioManager.RINGER_MODE_VIBRATE);    volume = audioMa.getStreamVolume(AudioManager.STREAM_RING);    myprogress.setProgress(volume);myimage.setImageDrawable(getResources().getDrawable(R.drawable.vibrate));}});}}


更多相关文章

  1. android之AudioManager详解_什么是AudioManager
  2. Android手机客户端通过JSP实现与Tomcat服务器端通信(Msql数据库,Js
  3. Ubuntu12.04 adb无法连接手机
  4. 淘宝(阿里百川)手机客户端开发日记第一篇 android 主框架搭建(二
  5. 让android程序的屏幕分辨率大小可以支持平板电脑.
  6. 收藏的开发杂谈
  7. Android——自定义音量调节控件
  8. Android------Button 添加声音效果(两种方式)
  9. Android(安卓)Studio ——在不root手机的情况下读取Data目录下的

随机推荐

  1. Android(安卓)怎么判断Wifi 是否可用
  2. Preference 使用方法详解
  3. Android如何用代码重复加载同一个xml
  4. Android:使用canvas绘制饼状统计图(自动适
  5. Android(Java):jni学习
  6. 保持应用程序界面不随手机转动而转动 解
  7. Android开发问题记录
  8. android shape标签的使用
  9. android Timber日志打印
  10. Android(安卓)Studio使用中的小常识