android 控制手機音量的大小 切換聲音的模式

來源:互聯網
上載者:User

標籤:android   audiomanger progres   

(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));}});}}


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.