开发学院手机开发Android 开发 Android 用AudioManager类控制音量 阅读

Android 用AudioManager类控制音量

 2010-07-05 00:03:00 来源:WEB开发网   
核心提示:android:layout_width="60px"android:layout_height="60px"android:layout_x="50px"android:layout_y="272px"android:src="

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>

程序类分别为:

1、viewHolder

界面上的所有控件和元素都在这里静态声明

package com.terry;

import android.media.AudioManager;

import android.widget.ImageButton;

import android.widget.ImageView;

import android.widget.ProgressBar;

public class viewHolder {

public static ImageButton downButton;

public static ImageButton upButton;

public static ImageButton normalButton;

public static ImageButton muteButton;

public static ImageButton vibrateButton;

public static ProgressBar myProgressBar;

public static ImageView myImageView;

public static AudioManager audiomanage;

}

2、AudioManagerActivity

程序入口处,和主要逻辑代码的处理,程序开头以 (AudioManager)getSystemService(AUDIO_SERVICE); 取得 AudioManager 对象。然后再利用该对象来对铃声进行调整。声明了一个返回 ImageButton 的方法,用来处理各自按钮点击所执行的不同事件和对图片的状态进行调整设置。以下把代码提供给大家:

上一页  1 2 3 4 5 6  下一页

Tags:Android AudioManager 控制

编辑录入:coldstar [复制链接] [打 印]
[]
  • 好
  • 好的评价 如果觉得好,就请您
      0%(0)
  • 差
  • 差的评价 如果觉得差,就请您
      0%(0)
赞助商链接